0.0.0 • Published 12 years ago

oilpan v0.0.0

Weekly downloads
6
License
-
Repository
github
Last release
12 years ago

Oilpan

This is a simple utility for "catching" requests that "drip" through your middleware stack.

Example:

var flatiron = require('flatiron'),
    app = flatiron.app;

var oilpan = require('oilpan');

flatiron.use(oilpan);

flatiron.start(8080);
% curl localhost:8080
This request "fell through" the middleware stack!