node.js проверьте, существует ли удаленный URL -адрес

import urlExist from "url-exist"

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

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