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

Congrats on the 1.3 million weekly downloads, but no updates in 7 years, and no replies to issues?

To support URL beginning with // instead of only https:// and http://

add support for .ไทย UA Readiness with test case

isWebUri('http://das-küchengeflüster.de/feed') returns undefined.

isHttpUri and isHttpsUri methods both report 'http://http://blah' as valid.

try to verify that url: http://wrong%20link.tech/JFKblue.gif `if (validUrl.isWebUri(http://wrong%20link.tech/JFKblue.gif)){ console.log('Looks like an URI');` in logs I see that it looks like an URI, but it's not.

https://gist.github.com/mxpv/034933deeebb26b62f14 Was running the above through valid-url and here are the ones that failed when they should have succeeded: ``` http://✪df.ws/123 http://➡.ws/䨹 http://⌘.ws http://⌘.ws/ http://foo.com/unicode_(✪)_in_parens http://☺.damowmow.com/ http://مثال.إختبار http://例子.测试 http://उदाहरण.परीक्षा ```

NPM is not picking up on this project being MIT licensed. The licence detection is used by a couple of compliance analyzers, so it would be helpful to change the...

Currently `is_iri` fails on any characters, which don't match this regex: https://github.com/ogt/valid-url/blob/8d1fc52b21ceab99b68f415838035859b7237949/index.js#L28 Example: ```js t.ok(is_uri('http://localhost/ä'), 'http://localhost/ä'); ``` As far as I understand the main difference between URI and IRI is:...