isitdown
v1.0.0
Published
Wrapper for downforeveryoneorjustme.com
Downloads
26
Maintainers
Readme
isitdown
Usage:
const isItDown = require('isitdown');
isItDown('https://google.com')
.then(isDown => {
if (isDown) {
// ...
}
})
.catch(e => console.error(e));
Pretty easy.