1.0.0 • Published 9 years ago

onboot v1.0.0

Weekly downloads
2
License
ISC
Repository
-
Last release
9 years ago

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?