node.js Sprawdź, czy istnieje zdalny adres URL

import urlExist from "url-exist"

const exists = await urlExist("https://google.com")

// Handle result
console.log(exists)
Determined Dolphin