UNPKG

hollaback

Version:

Resolves a Promise when host(s)/port(s) are ready

10 lines (8 loc) 262 B
const hollaback = require('hollaback'); const results = await hollaback('google.com:80', 'yahoo.com:80', 'linkedin.com:80', { timeout: 10 * 1000 // 10 seconds }); // Print out the results to the screen for (const result of results) { console.log(result); }