ping-wrapper

0.0.3 • Public • Published

node-ping-wrapper

Ping wrapper for node - one process listening on stdout is spawned; inherits from EventEmitter

Usage:

var Ping = require('ping-wrapper');
 
 
// load configuration from file 'config-default-' + process.platform
// Only linux is supported at the moment
Ping.configure();
 
 
var ping = new Ping('127.0.0.1');
 
ping.on('ping', function(data){
    console.log('Ping %s: time: %d ms', data.host, data.time);
});
 
ping.on('fail', function(data){
    console.log('Fail', data);
});
 
 
// later you can call ping.stop()

Readme

Keywords

none

Package Sidebar

Install

npm i ping-wrapper

Weekly Downloads

19

Version

0.0.3

License

none

Last publish

Collaborators

  • langpavel