onboot

v1.0.0
Boot when all the bootstraps are laced up
boot init

onboot

Simple script to register boot strap functions before the bootup actually occurs.

Supports synchronous and asynchronous bootstrapping functions.

usage

  1. Set your boot strap calls
  2. Define your bootup function

example

var boot = require('onboot');

// synchronous
boot.strap(function () {
  // do dependency work
});

// asynchronous
boot.strap(function (done) {
  setTimeout(function () {
    // some async task
    done();
  }, 2500);
});

boot.up(function () {
  // start server
});

todo

  • client side support (yes, simple, but I'm in a hurry)
  • more tests
  • timeout?
npm i onboot

Metadata

  • ISC
  • Whatever
  • Remy Sharp
  • released 1/7/2015

Downloads

Maintainers