Manage your node cluster. With zero downtime
npm install cluclu
========
UNMAINTAINED – But turns out this module still works with node 6
A cluster manager with a built in CLI and a simple API for plugins.
clu will spawn the requested number of workers, which will share the same port. This way the load gets distributed across all workers and multiple cores can be used effectively. It uses the node cluster API to do this.
Inspired by cluster.

Features:
* built in CLI (optional)
* zero downtime restarts
* restarts workers one after another
* add or remove workers on the fly
* uses the node cluster API
 
npm install --save clu `` JavaScript
var clu = require('clu');
clu.createCluster({
exec: './app.js',
workers: 2,
silent: false,
silentWorkers: true,
cli: true
});
// short: clu.createCluster('./app.js');
clu.use(clu.repl());
`
3. Start your cluster with node server start
Use node server --help for a list of all commands.
You can also start the server with node server. This will start the server in the foreground.
* Command Line
* API
JavaScript
var cluDnode = require('clu-dnode');
clu.use(cluDnode());
clu.use(clu.repl('myRepl.sock'));
``Built in:
* clu.repl() - a repl interface
Official:
* clu-dnode - dnode interface for clu
3rd Party:
contact me if you create any :)