2pid 中文文档教程

发布于 8年前 浏览 22 项目主页 更新于 3年前

2pid

v.1.0.1

使用 PID 文件

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伊万诺夫 2@ivanoff.org.ua # curl -A cv ivanoff.org.ua

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

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文