Package

purescript-httpure

Repository
cprussin/purescript-httpure
License
MIT
Uploaded by
cprussin
Published on
2017-09-26T07:16:17Z

License Latest release Build Status purescript-httpure on Pursuit

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 _ = HTTPure.ok "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