Finished script

This commit is contained in:
plane000
2018-05-27 16:11:50 +01:00
parent c346a752f8
commit b5641501fd
51 changed files with 8787 additions and 0 deletions

25
node_modules/ping/examples/example.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
//-------- example -----------------------
var ping = require('../index');
var hosts = ['192.168.1.1', 'google.com', 'yahoo.com'];
hosts.forEach(function(host){
// Running with default config
ping.sys.probe(host, function(isAlive){
var msg = isAlive ? 'host ' + host + ' is alive' : 'host ' + host + ' is dead';
console.log(msg);
});
// Running with custom config
ping.sys.probe(host, function(isAlive){
var msg = isAlive ? 'host ' + host + ' is alive' : 'host ' + host + ' is dead';
console.log(msg);
}, {extra: ["-i 2"]});
// Running ping with some default argument gone
ping.sys.probe(host, function(isAlive){
var msg = isAlive ? 'host ' + host + ' is alive' : 'host ' + host + ' is dead';
console.log(msg);
}, {extra: ["-i 2"], timeout: false});
});