I always want to shoot myself in the head when looking at code like the following:
var url = "http://example.org/foo?bar=baz",
separator = url.indexOf('?') > -1 ? '&' : '?';
url += separator + encodeURIComponent("foo") + "=" + encodeURIComponent("bar");
I still can't believe javascript - the f**ing backbone-language of the web - doesn't offer an API for mutating URLs. Browsers (Firefox) don't expose the Location
object (the structure behind window.location).
How about a nice, clean and simple API for mutating URIs:
var url = new URL("http://example.org/foo?bar=baz");
url.addQuery("foo", "bar");
URI.js is here to help with that.
// mutating URLs
URI("http://example.org/foo.html?hello=world")
.username("rodneyrehm")
// -> http://[email protected]/foo.html?hello=world
.username("")
// -> http://example.org/foo.html?hello=world
.directory("bar")
// -> http://example.org/bar/foo.html?hello=world
.suffix("xml")
// -> http://example.org/bar/foo.xml?hello=world
.query("")
// -> http://example.org/bar/foo.xml
.tld("com")
// -> http://example.com/bar/foo.xml
.query({ foo: "bar", hello: ["world", "mars"] });
// -> http://example.com/bar/foo.xml?foo=bar&hello=world&hello=mars
// cleaning things up
URI("?&foo=bar&&foo=bar&foo=baz&")
.normalizeQuery();
// -> ?foo=bar&foo=baz
// working with relative paths
URI("/foo/bar/baz.html")
.relativeTo("/foo/bar/world.html");
// -> ./baz.html
URI("/foo/bar/baz.html")
.relativeTo("/foo/bar/sub/world.html")
// -> ../baz.html
.absoluteTo("/foo/bar/sub/world.html");
// -> /foo/bar/baz.html
See the API Docs for more stuff.
// ==ClosureCompiler==
// @compilation_level SIMPLE_OPTIMIZATIONS
// @output_file_name contextMenu.js
// @code_url http://medialize.github.com/URI.js/IPv6.js
// @code_url http://medialize.github.com/URI.js/punycode.js
// @code_url http://medialize.github.com/URI.js/URI.js
// ==/ClosureCompiler==
Docs where you get more info on parsing and working with URLs
- Uniform Resource Identifiers (URI): Generic Syntax (superseded by 3986)
- IPv6 Literal Addresses in URL's (superseded by 3986)
- Punycode - Internationalized Domain Name (IDN) (html version)
- URI - Reference Resolution
- Parsing URLs for Fun and Profit
- Regular Expression URL Parser
- Naming URL components
- Java URI Class
- Java Inet6Address Class
- https://www.w3.org/Bugs/Public/show_bug.cgi?id=14148
- http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html#workerlocation
- MozURLProperty (not documented yet?!) https://developer.mozilla.org/User:trevorh/Interface_documentation_status
- The simple URL Mutation "Hack" (jsPerf comparison)
- URI Parser
- jQuery-URL-Parser
- URL.js
if you want to get involved, these are things you could help out with…
- AMD stuff
- modifiers for domain, tld, directory, file, suffix are hardly the most performant solutions
- accept all IPv6 notations
- include a hint for jQuery.fn.serialize()
- punycode.js - Mathias Bynens
- IPv6.js - Rich Brown - (rewrite of the original)
I built this sucker during Christmas 2011. It was a nice excuse to get away from the annual family terror. You should try it some time…
Quote from java doc:
A URI is a uniform resource identifier while a URL is a uniform resource locator. Hence every URL is a URI, abstractly speaking, but not every URI is a URL. This is because there is another subcategory of URIs, uniform resource names (URNs), which name resources but do not specify how to locate them. The mailto, news, and isbn URIs shown above are examples of URNs.
URI.js only handles URLs - but since Firefox already used window.URL for some (yet undocumented) MozURLProperty, I named it URI anyways.
URI.js is published under the MIT license and GPL v3.
- Initial URI.js