url-exist-sync
v2.0.0
Published
Synchronously check if a URL exists.
Downloads
783
Maintainers
Readme
URL Exists Sync
Synchronously check if a URL exists.
Use asynchronously
If you are able to run this in an asynchronous context, I highly recommended that you do so with url-exist
since synchronous web requests can hang/freeze clients.
Install
npm install url-exist-sync
Usage
import urlExistSync from "url-exist-sync"
urlExistSync("https://google.com")
//=> true
urlExistSync("https://google.com/404ingURL")
//=> false
urlExistSync("notaurl")
//=> false
API
urlExistSync(url)
url
Type: string
The URL to check.
Related
- url-exist - The asynchronous version.