node.js check if a remote URL exists code example
Example: node.js check if a remote URL exists
import urlExist from "url-exist"
const exists = await urlExist("https://google.com")
// Handle result
console.log(exists)
import urlExist from "url-exist"
const exists = await urlExist("https://google.com")
// Handle result
console.log(exists)