modulz
v0.0.1
Published
Breaks your application into modules that run in their own processes. Prevent crashes in one component from affecting another and auto-restarts crashed components.
Downloads
2
Readme
node-modulz
Runs server modules in their own child process to prevent errors from one module affecting another and automatically restart crashed modules.
Usage:
{
var modules = [
{id: 'module 1', method: someFunction, options: moduleOpts},
{id: 'module 2', method: someOtherFunction, options: module2Opts},
];
}
var modulz = require('node-modulz');
modulz.run(modules);