Skip to content

emilbayes/is-http-url

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jul 26, 2016
c711ac9 · Jul 26, 2016

History

6 Commits
Jul 25, 2016
Jul 26, 2016
Jul 26, 2016
Jul 26, 2016
Jul 26, 2016

Repository files navigation

is-http-url

Validate URLs for sane values

Install

npm install is-http-url

Usage

Does the following:

  • Protocol should be one of http: or https:
  • Hostname should be valid domain name or IPv4 address (TODO: IPv6)
  • Port, if given, should be an integer in the range [1, 65535]

Example usage could be to validate the Origin or Referer HTTP headers

const assert = require('assert')
const isHttpUrl = require('is-http-url')

assert.ok(isHttpUrl('http://example.com/hello-world.txt'))
assert.notOk(isHttpUrl('//test'))

API

isHttpUrl(url)

url

Type: String

Related

License

ISC

About

Validate URLs for sane values

Resources

License

Stars

Watchers

Forks

Packages

No packages published