You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

201 lines
6.2 KiB

  1. # URI.js
  2. URI.js is an [RFC 3986](http://www.ietf.org/rfc/rfc3986.txt) compliant, scheme extendable URI parsing/validating/resolving library for all JavaScript environments (browsers, Node.js, etc).
  3. It is also compliant with the IRI ([RFC 3987](http://www.ietf.org/rfc/rfc3987.txt)), IDNA ([RFC 5890](http://www.ietf.org/rfc/rfc5890.txt)), IPv6 Address ([RFC 5952](http://www.ietf.org/rfc/rfc5952.txt)), IPv6 Zone Identifier ([RFC 6874](http://www.ietf.org/rfc/rfc6874.txt)) specifications.
  4. URI.js has an extensive test suite, and works in all (Node.js, web) environments. It weighs in at 6.4kb (gzipped, 17kb deflated).
  5. ## API
  6. ### Parsing
  7. URI.parse("uri://user:pass@example.com:123/one/two.three?q1=a1&q2=a2#body");
  8. //returns:
  9. //{
  10. // scheme : "uri",
  11. // userinfo : "user:pass",
  12. // host : "example.com",
  13. // port : 123,
  14. // path : "/one/two.three",
  15. // query : "q1=a1&q2=a2",
  16. // fragment : "body"
  17. //}
  18. ### Serializing
  19. URI.serialize({scheme : "http", host : "example.com", fragment : "footer"}) === "http://example.com/#footer"
  20. ### Resolving
  21. URI.resolve("uri://a/b/c/d?q", "../../g") === "uri://a/g"
  22. ### Normalizing
  23. URI.normalize("HTTP://ABC.com:80/%7Esmith/home.html") === "http://abc.com/~smith/home.html"
  24. ### Comparison
  25. URI.equal("example://a/b/c/%7Bfoo%7D", "eXAMPLE://a/./b/../b/%63/%7bfoo%7d") === true
  26. ### IP Support
  27. //IPv4 normalization
  28. URI.normalize("//192.068.001.000") === "//192.68.1.0"
  29. //IPv6 normalization
  30. URI.normalize("//[2001:0:0DB8::0:0001]") === "//[2001:0:db8::1]"
  31. //IPv6 zone identifier support
  32. URI.parse("//[2001:db8::7%25en1]");
  33. //returns:
  34. //{
  35. // host : "2001:db8::7%en1"
  36. //}
  37. ### IRI Support
  38. //convert IRI to URI
  39. URI.serialize(URI.parse("http://examplé.org/rosé")) === "http://xn--exampl-gva.org/ros%C3%A9"
  40. //convert URI to IRI
  41. URI.serialize(URI.parse("http://xn--exampl-gva.org/ros%C3%A9"), {iri:true}) === "http://examplé.org/rosé"
  42. ### Options
  43. All of the above functions can accept an additional options argument that is an object that can contain one or more of the following properties:
  44. * `scheme` (string)
  45. Indicates the scheme that the URI should be treated as, overriding the URI's normal scheme parsing behavior.
  46. * `reference` (string)
  47. If set to `"suffix"`, it indicates that the URI is in the suffix format, and the validator will use the option's `scheme` property to determine the URI's scheme.
  48. * `tolerant` (boolean, false)
  49. If set to `true`, the parser will relax URI resolving rules.
  50. * `absolutePath` (boolean, false)
  51. If set to `true`, the serializer will not resolve a relative `path` component.
  52. * `iri` (boolean, false)
  53. If set to `true`, the serializer will unescape non-ASCII characters as per [RFC 3987](http://www.ietf.org/rfc/rfc3987.txt).
  54. * `unicodeSupport` (boolean, false)
  55. If set to `true`, the parser will unescape non-ASCII characters in the parsed output as per [RFC 3987](http://www.ietf.org/rfc/rfc3987.txt).
  56. * `domainHost` (boolean, false)
  57. If set to `true`, the library will treat the `host` component as a domain name, and convert IDNs (International Domain Names) as per [RFC 5891](http://www.ietf.org/rfc/rfc5891.txt).
  58. ## Scheme Extendable
  59. URI.js supports inserting custom [scheme](http://en.wikipedia.org/wiki/URI_scheme) dependent processing rules. Currently, URI.js has built in support for the following schemes:
  60. * http \[[RFC 2616](http://www.ietf.org/rfc/rfc2616.txt)\]
  61. * https \[[RFC 2818](http://www.ietf.org/rfc/rfc2818.txt)\]
  62. * mailto \[[RFC 6068](http://www.ietf.org/rfc/rfc6068.txt)\]
  63. * urn \[[RFC 2141](http://www.ietf.org/rfc/rfc2141.txt)\]
  64. * urn:uuid \[[RFC 4122](http://www.ietf.org/rfc/rfc4122.txt)\]
  65. ### HTTP/HTTPS Support
  66. URI.equal("HTTP://ABC.COM:80", "http://abc.com/") === true
  67. URI.equal("https://abc.com", "HTTPS://ABC.COM:443/") === true
  68. ### WS/WSS Support
  69. URI.parse("wss://example.com/foo?bar=baz");
  70. //returns:
  71. //{
  72. // scheme : "wss",
  73. // host: "example.com",
  74. // resourceName: "/foo?bar=baz",
  75. // secure: true,
  76. //}
  77. URI.equal("WS://ABC.COM:80/chat#one", "ws://abc.com/chat") === true
  78. ### Mailto Support
  79. URI.parse("mailto:alpha@example.com,bravo@example.com?subject=SUBSCRIBE&body=Sign%20me%20up!");
  80. //returns:
  81. //{
  82. // scheme : "mailto",
  83. // to : ["alpha@example.com", "bravo@example.com"],
  84. // subject : "SUBSCRIBE",
  85. // body : "Sign me up!"
  86. //}
  87. URI.serialize({
  88. scheme : "mailto",
  89. to : ["alpha@example.com"],
  90. subject : "REMOVE",
  91. body : "Please remove me",
  92. headers : {
  93. cc : "charlie@example.com"
  94. }
  95. }) === "mailto:alpha@example.com?cc=charlie@example.com&subject=REMOVE&body=Please%20remove%20me"
  96. ### URN Support
  97. URI.parse("urn:example:foo");
  98. //returns:
  99. //{
  100. // scheme : "urn",
  101. // nid : "example",
  102. // nss : "foo",
  103. //}
  104. #### URN UUID Support
  105. URI.parse("urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6");
  106. //returns:
  107. //{
  108. // scheme : "urn",
  109. // nid : "example",
  110. // uuid : "f81d4fae-7dec-11d0-a765-00a0c91e6bf6",
  111. //}
  112. ## Usage
  113. To load in a browser, use the following tag:
  114. <script type="text/javascript" src="uri-js/dist/es5/uri.all.min.js"></script>
  115. To load in a CommonJS/Module environment, first install with npm/yarn by running on the command line:
  116. npm install uri-js
  117. # OR
  118. yarn add uri-js
  119. Then, in your code, load it using:
  120. const URI = require("uri-js");
  121. If you are writing your code in ES6+ (ESNEXT) or TypeScript, you would load it using:
  122. import * as URI from "uri-js";
  123. Or you can load just what you need using named exports:
  124. import { parse, serialize, resolve, resolveComponents, normalize, equal, removeDotSegments, pctEncChar, pctDecChars, escapeComponent, unescapeComponent } from "uri-js";
  125. ## Breaking changes
  126. ### Breaking changes from 3.x
  127. URN parsing has been completely changed to better align with the specification. Scheme is now always `urn`, but has two new properties: `nid` which contains the Namspace Identifier, and `nss` which contains the Namespace Specific String. The `nss` property will be removed by higher order scheme handlers, such as the UUID URN scheme handler.
  128. The UUID of a URN can now be found in the `uuid` property.
  129. ### Breaking changes from 2.x
  130. URI validation has been removed as it was slow, exposed a vulnerabilty, and was generally not useful.
  131. ### Breaking changes from 1.x
  132. The `errors` array on parsed components is now an `error` string.