url-join
Join urls and normalize as in path.join.
Last updated 6 years ago by jfromaniello .
MIT · Repository · Bugs · Original npm
$ cnpm install url-join 
SYNC missed versions from official npm registry.

Join all arguments together and normalize the resulting url.

Install

npm install url-join

Usage

var urljoin = require('url-join');

var fullUrl = urljoin('http://www.google.com', 'a', '/b/cd', '?foo=123');

console.log(fullUrl);

Prints:

'http://www.google.com/a/b/cd?foo=123'

Browser and AMD

It also works in the browser, you can either include lib/url-join.js in your page:

<script src="url-join.js"></script>
<script type="text/javascript">
	urljoin('http://blabla.com', 'foo?a=1')
</script>

Or using an AMD module system like requirejs:

define(['path/url-join.js'], function (urljoin) {
  urljoin('http://blabla.com', 'foo?a=1');
});

License

MIT

Current Tags

  • 5.0.0                                ...           latest (3 years ago)

6 Versions

  • 4.0.0                                ...           8 years ago
  • 5.0.0                                ...           3 years ago
  • 3.0.0                                ...           8 years ago
  • 2.0.5                                ...           8 years ago
  • 4.0.1                                ...           6 years ago
  • 1.1.0                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (3)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org