Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 340 Bytes

readme.md

File metadata and controls

22 lines (14 loc) · 340 Bytes

is-up

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

Install

npm install is-up

Usage

import isUp from 'is-up';

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

Related