Verify if a website is online!
import { isWebsiteUp } from 'the-simplifier' let func = async() => { let result = await isWebsiteUp('https://youtube.com') console.log(result) } func() // Expected: true
Last updated 4 years ago
Was this helpful?