Ohm-Management - Projektarbeit B-ME
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.

README.md 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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.2kb (gzipped, 16kb 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 Support
  66. URI.equal("HTTP://ABC.COM:80", "http://abc.com/") === true
  67. ### Mailto Support
  68. URI.parse("mailto:alpha@example.com,bravo@example.com?subject=SUBSCRIBE&body=Sign%20me%20up!");
  69. //returns:
  70. //{
  71. // scheme : "mailto",
  72. // to : ["alpha@example.com", "bravo@example.com"],
  73. // subject : "SUBSCRIBE",
  74. // body : "Sign me up!"
  75. //}
  76. URI.serialize({
  77. scheme : "mailto",
  78. to : ["alpha@example.com"],
  79. subject : "REMOVE",
  80. body : "Please remove me",
  81. headers : {
  82. cc : "charlie@example.com"
  83. }
  84. }) === "mailto:alpha@example.com?cc=charlie@example.com&subject=REMOVE&body=Please%20remove%20me"
  85. ### URN Support
  86. URI.parse("urn:example:foo");
  87. //returns:
  88. //{
  89. // scheme : "urn",
  90. // nid : "example",
  91. // nss : "foo",
  92. //}
  93. #### URN UUID Support
  94. URI.parse("urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6");
  95. //returns:
  96. //{
  97. // scheme : "urn",
  98. // nid : "example",
  99. // uuid : "f81d4fae-7dec-11d0-a765-00a0c91e6bf6",
  100. //}
  101. ## Usage
  102. To load in a browser, use the following tag:
  103. <script type="text/javascript" src="uri-js/dist/es5/uri.all.min.js"></script>
  104. To load in a CommonJS (Node.js) environment, first install with npm by running on the command line:
  105. npm install uri-js
  106. Then, in your code, load it using:
  107. const URI = require("uri-js");
  108. If you are writing your code in ES6+ (ESNEXT) or TypeScript, you would load it using:
  109. import * as URI from "uri-js";
  110. Or you can load just what you need using named exports:
  111. import { parse, serialize, resolve, resolveComponents, normalize, equal, removeDotSegments, pctEncChar, pctDecChars, escapeComponent, unescapeComponent } from "uri-js";
  112. ## Breaking changes
  113. ### Breaking changes from 3.x
  114. 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.
  115. The UUID of a URN can now be found in the `uuid` property.
  116. ### Breaking changes from 2.x
  117. URI validation has been removed as it was slow, exposed a vulnerabilty, and was generally not useful.
  118. ### Breaking changes from 1.x
  119. The `errors` array on parsed components is now an `error` string.
  120. ## License ([Simplified BSD](http://en.wikipedia.org/wiki/BSD_licenses#2-clause))
  121. Copyright 2011 Gary Court. All rights reserved.
  122. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  123. 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  124. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  125. THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  126. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.