๐ŸŸขisWebsiteUp

Verify if a website is online!

isUp.js
import { isWebsiteUp } from 'the-simplifier'

let func = async() => {
    let result = await isWebsiteUp('https://youtube.com')
    
    console.log(result)
}

func() // Expected: true

Last updated

Was this helpful?