oban

0.2.0 • Public • Published

Oban Build Status

Highland stream HTTP server. Builds on top of http and highland.

npm install oban

Example

Peat gives our response builders, or you can use Dram for a more expressive style.

Simple response

var handle = require('oban');
var http   = require('http');
var resp   = require('peat');
var stream = require('highland')
 
http.createServer(handle(function(req) {
    return stream([
        resp.Status(200),
        resp.Header('X-Powered-By', 'Oban'),
        'hello world'
    ]);
})).listen(8000);

Remote service, stream transformation

var request = require('request');
 
handle(function(req) {
    return stream([
        resp.Status(200)
    ]).concat(
        stream(request('lorem.example.com'))
        .map(function(s) { return s.toUpperCase() })
    );
});

API

Oban provides two functions to handle responses, handle and handleWithError. The former is simply the latter partially applied with a default error handler, which you'll want to override.

handleWithError :: (Error → Result) → (Request → Result) → Request → Response → ()

Takes a Stream error handler and a Request handler which return Result streams. A Result is a Highland stream containing Oban response objects, Strings or Buffers. String and Buffer chunks are sent as body to the client.

handle :: (Request → Result) → Request → Response → ()

Partially applied version of handleWithError with a default error handler. Good enough for development, but you'll want to override it if (God forbid) you put this in production. It's the main export of Oban to make it simple to switch:

var handle = require('oban');

to

var oban = require('oban');
var handle = oban.handleWithError(customErrorHandler);

Default error handler

The default error handler that handle uses simply sets the status code to 500 and prints the stack trace of the error to the client.

Licence

MIT.

Package Sidebar

Install

npm i oban

Weekly Downloads

0

Version

0.2.0

License

MIT

Last publish

Collaborators

  • quarterto