0.1.0 • Published 8 years ago

file-status v0.1.0

Weekly downloads
3
License
Apache
Repository
github
Last release
8 years ago

node-file-status

read/write process metadata to the file system

Usage

var fileStatus = require('file-status');
var path = require('path');
var path2 = path.join(__dirname, 'tmp', 'server.status.json');
fileStatus.write(path2, {custom: 'data'});
// Writes {pid: process.pid, mtime: new Date(), custom: 'data'} to __dirname/tmp/server.status.json
console.info(fileStatus.read(path2));
// {pid: process.pid, mtime: new Date(), custom: 'data'}