Check whether a website is up or down using the isitup.org API
$ npm install is-up
const isUp = require('is-up');
(async () => {
console.log(await isUp('https://sindresorhus.com'));
//=> true
})();- is-up-cli - CLI for this module
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Check whether a website is up or down using the isitup.org API
$ npm install is-up
const isUp = require('is-up');
(async () => {
console.log(await isUp('https://sindresorhus.com'));
//=> true
})();