Popularity
3.5
Growing
Activity
2.6
Growing
384
10
18

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: Command Line Apps     Website     Ip     Up     Offline     Online     Running     Live     Webpage     Down    
Latest version: v4.0.0

is-up alternatives and similar modules

Based on the "Command Line Apps" category.
Alternatively, view is-up alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of is-up or a related project?

Add another 'Command Line Apps' Module

README

is-up Build Status

Check whether a website is up or down using the isitup.org API

Install

$ npm install is-up

Usage

const isUp = require('is-up');

(async () => {
    console.log(await isUp('https://sindresorhus.com'));
    //=> true
})();

Related