valid-url icon indicating copy to clipboard operation
valid-url copied to clipboard

Node module that provides URI validation functions

Results 20 valid-url issues
Sort by recently updated
recently updated
newest added

Hi! I've been using this great library for a while and doesn't have problem at all. Until I try to use it to validate a github ssh url, like "git@github:xxx/repo.git"....

Again the value NOT URL http://a.b--c.de/ NOT URL http://www.foo.bar./ Return True

Run with `isWebUri` and `isUri`

I used the valid-url for my project. I detected one issue when use this module for the URL that contain ";". In URL Object it detects that this is not...

https://https://www.facebook.com/sunnybens this thing above cannot be a valid url but its accepted

`isUri` returns undefined for urls starting with a double slash, as in `//lh6.ggpht.com/5mI27oolnooL__S3ns9qAf_6TsFNExMtUAwTKz6prWCxEmVkmZZZwe3lI-ZLbMawEJh3=w300` which I understand is a [valid url](http://stackoverflow.com/a/11881295/993769). For instance, Google play uses it for its images and...

``` js var validator = require('valid-url'); console.log( validator.isWebUri('http://foo') ); ``` prints `http://foo` (e.g. true), which is not correct. There is no TLD. Valid URLs will have at least one dot...

IsHttpsUri check is failing on valid urls like - http://polish.pl/sport-mezczyzni/asics/?sport_type=piłkaó Symbols like ó caused this error. Maybe some filters can be added, like WhiteList some characters?

Your input url is :https:::///wwww.google.com Looks like an valid URI

I have an issue to validating the URL For an example var url = "http://localhost:4001//app**//**test#//dash//Dashboard1" ``` if (validUrl.isUri(url)){ console.log('Looks like an URI'); } else { console.log('Not a URI'); } ```...