0.0.5 • Published 9 years agoCLI
easy-stop
Licence
Apache-2.0
Version
0.0.5
Deps
1
Vulns
0
Weekly
0
easy-stop
easy-stop is a quick util of control node server start / stop.
It can helps you start singleton web server by one folder.
Start Server
const easyStop = require('easy-stop');
easyStop.start().then(function () {
// Start your server like express...
});
start will check current running instance.
Return Promise - onSuccess if no instance is running.
Stop Server
by code
const easyStop = require('easy-stop');
easyStop.stop();
stop will close the running instance.
by cli
easy-stop stop
Arguments
start(pidDirPath = current folder, pidFileName = 'process.pid')
stop(pidDirPath = current folder, pidFileName = 'process.pid')
restart(pidDirPath = current folder, pidFileName = 'process.pid')