is-github-url
Check if a passed string is a valid GitHub URL
Unlike is-git-url, is-github-url is a domain-specific validator. It returns true
if passed URL is a part of github.com
domain only.
Installation
$ npm install is-github-url --save
Usage
var isGithubUrl = ; // Valid examples; // => true; // => true;// => true;// => true;// => true // Invalid examples; // => false;// => false;// => false // Repository mode can be used to check whether a passed URL// is a valid repository URL;// => true;// => false;// => false // Strict mode is used to validate URLs before cloning// Strict mode turns on automatically if URL contains git protocol;// => true;// => false
API
isGithubUrl(url, [options])
Check if a passed string is a valid GitHub URL
Params
- String
url
: A string to be validated - Object
options
: An object containing the following fields:strict
(Boolean): Match only URLs ending with .gitrepository
(Boolean): Match only valid GitHub repo URLs
License
MIT © Philipp Alferov