wrapper.express

0.3.0 • Public • Published

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 express@4.x and node@0.10+.

Licence

Copyright (c) 2014 Quildreen Motta.

Released under the MIT licence.

Readme

Keywords

Package Sidebar

Install

npm i wrapper.express

Weekly Downloads

1

Version

0.3.0

License

MIT

Last publish

Collaborators

  • killdream
  • robotlolita