node-isonline

0.1.0 • Public • Published

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
});

Readme

Keywords

Package Sidebar

Install

npm i node-isonline

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • adigiovanni