An open API service indexing awesome lists of open source software.

https://github.com/jlord/hasinternet

checks for internet, works in browser and node
https://github.com/jlord/hasinternet

Last synced: 5 months ago
JSON representation

checks for internet, works in browser and node

Awesome Lists containing this project

README

          

# hasInternet

Node.js module for checking if user is connected to the internet.

**To Use**

Call the function `hasInternet` and give it a callback function, which takes in an error and a boolean for the true/false that will return for the internet's status. IS THERE INTERNET!?!

```javascript
var hasInternet = require('hasinternet')

hasInternet(answer)

function answer(err, internet) {
// there is either an error and false for internet
// or false for error and true for internet
// do what you need to do with that info!
console.log(err, internet)
}
```