🪁 A simple, type-safe http server for PureScript
Go to file
2017-07-10 12:06:14 -07:00
Documentation/Examples Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
Library Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
Test Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
.bowerrc Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
.gitignore Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
.travis.yml Add travis configuration (#16) 2017-05-25 20:35:21 -07:00
bower.json Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
Contributing.md Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
License Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
Makefile Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
package.json Test all the things! (#20) 2017-07-10 03:17:13 -07:00
Readme.md Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00

HTTPure

A purescript HTTP server framework.

Status

This project is currently an early-stage work in progress. It is not production-ready yet. You can track what's left before it gets production-ready by looking at our roadmap. If you'd like to help us get there quicker, please contribute! To get started, check our contributing guide.

Installation

bower install --save purescript-httpure

Quick Start

module Main where

import Prelude (map, ($))

import Control.Monad.Eff.Console as Console
import HTTPure as HTTPure

main :: HTTPure.HTTPureM (console :: Console.CONSOLE)
main = do
  HTTPure.serve 8080 routes $ Console.log "Server now up on port 8080"
  where
    routes = map HTTPure.Route
      [ { method: HTTPure.Get
        , route: "/"
        , body: \_ -> "hello world!"
        }
      ]

Documentation

Module documentation is published on Pursuit.

Examples

HTTPure ships with a number of examples. To run an example, in the project root, run:

make example EXAMPLE=<Example Name>

Each example's startup banner will include information on routes available on the example server.

Testing

To run the test suite, in the project root run:

make test

Contributing

We are open to accepting contributions! Please see the contributing guide.

People

HTTPure is written and maintained by Connor Prussin.

We are open to accepting contributions! Please see the contributing guide.

License

MIT