vlad 6f123ff03e 18.07 | 6 vuotta sitten | |
---|---|---|
.. | ||
LICENSE | 6 vuotta sitten | |
README.md | 6 vuotta sitten | |
index.js | 6 vuotta sitten | |
package.json | 6 vuotta sitten |
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, … }