2.0.0 • Published 3 years ago

url-exist-sync v2.0.0

Weekly downloads
265
License
MIT
Repository
github
Last release
3 years ago

URL Exists Sync Travis CI Build Status

Synchronously check if a URL exists.

NPM Badge

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