🪁 A simple, type-safe http server for PureScript
Go to file
2017-07-17 22:31:46 -07:00
Documentation/Examples Don't import prelude so explicitly (#37) 2017-07-17 22:31:46 -07:00
Library Don't import prelude so explicitly (#37) 2017-07-17 22:31:46 -07:00
Test Don't import prelude so explicitly (#37) 2017-07-17 22:31:46 -07:00
.bowerrc Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
.gitignore Refactor to take advantage of pattern matching as routing mechanism (#24) 2017-07-13 23:28:57 -07:00
.travis.yml Turn on strict compilation (#35) 2017-07-17 19:10:01 -07:00
bower.json #22 add support for writing headers and status (#32) 2017-07-17 16:42:13 -07:00
Contributing.md Fix some bad links in the guides 2017-07-10 12:53:18 -07:00
History.md Add badges, History.md and Releasing.md (#23) 2017-07-10 12:38:56 -07:00
License Clean up file naming and directory structure (#21) 2017-07-10 12:06:14 -07:00
Makefile Add support for reading body (#36) 2017-07-17 22:25:14 -07:00
Readme.md More quickstart cleanup (#27) 2017-07-13 23:49:01 -07:00
Releasing.md Correct issues with the releasing guide 2017-07-10 12:50:16 -07:00

HTTPure

License Latest release Build Status

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 (pure, ($))

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

main :: HTTPure.ServerM (console :: Console.CONSOLE)
main =
  HTTPure.serve 8080 router $ Console.log "Server now up on port 8080"
  where
    router _ = pure $ HTTPure.OK StrMap.empty "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