Monadic wrapper over Express web framework.
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.
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
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.
This library requires [email protected]
and [email protected]+
.
Copyright (c) 2014 Quildreen Motta.
Released under the MIT licence.