项目作者: gavwin
项目描述 :
Asynchronously ping things with async-pinger.
高级语言: JavaScript
项目地址: git://github.com/gavwin/async-pinger.git
async-pinger
Ping a website asynchronously with async-pinger.



Example
const ping = require('async-pinger');
ping('google.com', (err, ms) => {
if (err) console.error(err);
console.log(`took ${ms}ms to ping google.com`);
});