iso-url
Isomorphic/Universal WHATWG URL API with some support legacy node URL API
Last updated 4 years ago by hugomrdias .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install iso-url 
SYNC missed versions from official npm registry.

iso-url NPM Version NPM Downloads NPM License tests codecov

Isomorphic/Univeral WHATWG URL API with some support legacy node URL API

This package is a universal wrapper for node url and browser window.URL with support for legacy url.parse properties in the URL instance and defaults for base to support relative urls like url.parse. Node URL docs.

Caveats

No support for querystring objects. Use URLSearchParams.

Install

$ npm install iso-url

Usage

const { URL, URLSearchParams, format, relative } = require('iso-url');

const url = new isoUrl('http://localhost/unicorns');
const newSearchParams = new URLSearchParams(url.searchParams);

API

new URL(url, [base])

input

Type: string

The absolute or relative input URL to parse. If input is relative, then base is required. If input is absolute, the base is ignored.

base

Type: string|URL
Default: https://localhost in node and self.location.protocol + '//' + self.location.host in the browser.

The base URL to resolve against if the input is not absolute.

format(url, [options])

Same as https://nodejs.org/api/url.html#url_url_format_url_options

relative(url, [location], [protocalMap], [defaultProtocol])

Same as https://github.com/dominictarr/relative-url but doesn't support this syntax '//:9999'

License

MIT © Hugo Dias

Current Tags

  • 1.2.1                                ...           latest (4 years ago)

22 Versions

  • 1.2.1                                ...           4 years ago
  • 1.1.5                                ...           5 years ago
  • 1.1.4                                ...           5 years ago
  • 1.1.3                                ...           5 years ago
  • 1.1.2                                ...           5 years ago
  • 1.1.1                                ...           5 years ago
  • 1.1.0                                ...           5 years ago
  • 1.0.0                                ...           5 years ago
  • 0.4.7                                ...           6 years ago
  • 0.4.6                                ...           7 years ago
  • 0.4.5                                ...           7 years ago
  • 0.4.4                                ...           7 years ago
  • 0.4.3                                ...           7 years ago
  • 0.4.2                                ...           7 years ago
  • 0.4.1                                ...           7 years ago
  • 0.4.0                                ...           7 years ago
  • 0.3.0                                ...           7 years ago
  • 0.2.0                                ...           7 years ago
  • 0.1.2                                ...           7 years ago
  • 0.1.0                                ...           7 years ago
  • 0.0.2                                ...           7 years ago
  • 0.0.1                                ...           7 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 (12)

Copyright 2013 - present © cnpmjs.org | Home |