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