Bolshakova Anna ab21a11190 lab | hai 3 semanas | |
---|---|---|
.. | ||
LICENSE | hai 3 semanas | |
README.md | hai 3 semanas | |
index.js | hai 3 semanas | |
package.json | hai 3 semanas |
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, … }