Skip to content

A module to verify if there's an active internet connection with Node.js

License

Notifications You must be signed in to change notification settings

bricefriha/internet-available

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

internet-available

A module to verify if there's an active internet connection with Node.js

Installation

You can install this module through NPM using the following command in your terminal:

$ npm install internet-available --save

Example

internet-available requires Promises to work correctly. It's easy to use:

var internetAvailable = require("internet-available");

// Most easy way
internetAvailable({
    // Provide maximum execution time for the verification
    timeout: 5000,
    // If it tries 5 times and it fails, then it will throw no internet
    retries: 5
}).then(() => {
    console.log("Internet available");
}).catch(() => {
    console.log("No internet");
});

But configurable too (check the docs).

Documentation

The official documentation of the project can be found in Our Code World here.

About

A module to verify if there's an active internet connection with Node.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%