Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@recipher/bootstrap

recipher22MIT1.0.4

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