Kevin 29b9a0c50c clean && clean html base | 4 years ago | |
---|---|---|
.. | ||
LICENSE | 4 years ago | |
README.md | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago |
Convert a WHATWG URL to an http.request
/https.request
options object.
Node.js >= 4
is required. To install, type this at the command line:
npm install url-to-options
const urlToOptions = require('url-to-options');
const url = new URL('http://user:pass@hostname:8080/');
const opts = urlToOptions(url);
//-> { auth:'user:pass', port:8080, … }