baud
v1.1.2
Published
Server bootstrapper
Readme
Baud
Baud will create and start an instance of an App, in an isolated domain.
Usage
var start = require('baud').start
, App = require('./lib/app');
start(new App);To utilise cluster:
var start = require('baud').cluster
, App = require('./lib/app');
start(new App);