onboot
v1.0.0
Published
Boot when all the bootstraps are laced up
Downloads
3
Readme
onboot
Simple script to register boot strap functions before the bootup actually occurs.
Supports synchronous and asynchronous bootstrapping functions.
usage
- Set your boot strap calls
- 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?