1.0.4 • Published 7 years ago

@recipher/bootstrap v1.0.4

Weekly downloads
17
License
MIT
Repository
github
Last release
7 years ago

@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);