Package Exports
- url-to-options
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (url-to-options) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
url-to-options

Convert a WHATWG
URL
to anhttp.request
/https.request
options object.
Installation
Node.js >= 8
is required. To install, type this at the command line:
npm install url-to-options
Usage
const urlToOptions = require('url-to-options');
const url = new URL('http://user:pass@hostname:8080/');
const opts = urlToOptions(url);
//-> { auth:'user:pass', port:8080, … }