Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
/ wrapper.express Public archive

[WIP] A monadic wrapper over the Express web framework

License

Notifications You must be signed in to change notification settings

folktale/wrapper.express

Repository files navigation

wrapper.express

Build Status NPM version Dependencies Status experimental

Monadic wrapper over Express web framework.

Example

var Future  = require('data.future')
var Express = require('wrapper.express')(require('express'))

var routes = [
  Express.get('/:name', function(req) {
    return new Future(function(reject, resolve) {
      resolve(Express.send('Hello, ' + req.params.name))
    })
  })
]

var app = Express.create(routes)

Express.listen(8080, app).fork(
  function (error){ throw error }
, function (addr) { console.log('Running on http://localhost:' + addr.port) }
)

Or with Sweet.js macros:

var Express = require('wrapper.express')(require('express'));

var routes = $routes(Express) {
  get('/:name'): {params:{ name }} => $do {
    html <- Future.of('Hello, ' + name)
    return Express.send(html)
  }
}

Check out the examples/ folder for more examples.

Installing

The easiest way is to grab it from NPM. If you're running in a Browser environment, you can use Browserify

$ npm install wrapper.express

Documentation

Check out the Wiki for detailed information about the library. There's also plenty of Examples in the examples/ folder.

You can read the API documentation online or build it yourself:

$ git clone git://github.com/folktale/wrapper.express.git
$ cd wrapper.express
$ npm install
$ make documentation

Then open the file docs/index.html in your browser.

Platform

This library requires [email protected] and [email protected]+.

Licence

Copyright (c) 2014 Quildreen Motta.

Released under the MIT licence.

About

[WIP] A monadic wrapper over the Express web framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published