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

http://- as passing URI

Open sp3c1 opened this issue 4 years ago • 1 comments

Run with isWebUri and isUri

sp3c1 avatar Apr 24 '20 11:04 sp3c1

Hi @sp3c1,

I was facing the same issues with valid-url but also validator so I decided to build a module as reliable as possible strictly based on RFC-3986: https://github.com/adrienv1520/node-uri

The main features of this project are:

  • parse any URI (URNs, URLs, URIs with IDNs support, etc.);
  • get the safe Punycode ASCII or Unicode serialization of a domain;
  • check an URI, HTTP/HTTPS/Sitemap URL, IP, domain is valid with clear checking errors;
  • encode/decode an URI, HTTP/HTTPS/Sitemap URL.

I hope it could help you.

adrienv1520 avatar Oct 17 '20 16:10 adrienv1520