node-isonline
v0.1.0
Published
A minimalistic remote machine online status checker module for Node.js
Downloads
3
Readme
node-isonline
A minimalistic remote machine online status checker module for Node.js
Installation
npm install node-isonline
Usage
var
assert = require('assert');
var
isOnline = require('node-isonline');
isOnline('localhost', function (error, response) {
if (error) throw error;
assert.equal(response, true); // localhost's online
});