2pid

1.0.1 • Public • Published

2pid

v.1.0.1

Working with PID file

Install

npm --save install 2pid

Usage Example

cat index.js

var Pid = require('2pid');
 
var PID_FILE = '/tmp/myapp.pid';
var pid = new Pid(PID_FILE);
 
if(pid.status == 'runned') {
  throw new Error('application already running');
}
 
console.log(pid.status); //started
 
pid.remove();
 
console.log(pid.status); //stopped

Change Log

all changes

Created by

Dimitry Ivanov 2@ivanoff.org.ua # curl -A cv ivanoff.org.ua

Readme

Keywords

Package Sidebar

Install

npm i 2pid

Weekly Downloads

3

Version

1.0.1

License

Apache 2.0

Last publish

Collaborators

  • ivanoff