easy-stop

0.0.5 • Public • Published

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')

Readme

Keywords

none

Package Sidebar

Install

npm i easy-stop

Weekly Downloads

1

Version

0.0.5

License

Apache-2.0

Last publish

Collaborators

  • zombiej