Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

url-validator

mgmtio178MIT2.0.3

Loosely validate a URL

url, validator

readme

url validator

NPM version Build status Test coverage Dependency Status License Downloads Gittip

Opinionated URL validator.

  • Does not support raw domains like github.com, though I wish there was a smart way to do so
  • Defaults protocol-less URLs like //github.com/ to HTTPs like https://github.com/
  • Domains will always have trailing slashes
  • Encode components

API

var url = validate(url)

var validate = require('url-validator')

var url = validate('//github.com')
// => 'https://github.com/'

If the url is invalid, then url will be false