Bakhtina Sofya b84cb877be 1st comm | vor 2 Monaten | |
---|---|---|
.. | ||
LICENSE | vor 2 Monaten | |
README.md | vor 2 Monaten | |
index.js | vor 2 Monaten | |
package.json | vor 2 Monaten |
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, … }