url-exist-sync

Synchronously check if a URL exists.

Usage no npm install needed!

<script type="module">
  import urlExistSync from 'https://cdn.skypack.dev/url-exist-sync';
</script>

README

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