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