0.1.0 • Published 10 years ago

node-isonline v0.1.0

Weekly downloads
4
License
MIT
Repository
-
Last release
10 years ago

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