connection-tester

0.2.1 • Public • Published

connection-tester

Build Status

Test to check if the connection can be established or host/port reachable for a given host and port. Useful for testing all the connection in your node application at server startup.

How to Use

Async version

const connectionTester = require('connection-tester');

connectionTester.test(
    'www.yahoo.com',  // host
    80,               // port
    1000,             // connection timeout
    (err, output) => {
        console.log(output);
    }
);

connectionTester.test(
    'api.paypal.com', // host
    443,              // port
    1000,             // connection timeout
    (err, output) => {
        console.log(output);
    }
);

Sync version

const connectionTester = require('connection-tester');

console.log(connectionTester.test('www.yahoo.com', 80, 1000));
console.log(connectionTester.test('api.paypal.com', 443, 1000));

Dependents (8)

Package Sidebar

Install

npm i connection-tester

Weekly Downloads

1,687

Version

0.2.1

License

MIT

Unpacked Size

19 kB

Total Files

11

Last publish

Collaborators

  • skoranga