Validate URLs for sane values
npm install is-http-url
Does the following:
- Protocol should be one of
http:
orhttps:
- 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'))
Type: String