Feuerwehr-eppingen/node_modules/url-to-options
2020-06-04 13:20:10 +02:00
..
index.js Umzug auf Synology NAS 2020-06-04 13:20:10 +02:00
LICENSE Umzug auf Synology NAS 2020-06-04 13:20:10 +02:00
package.json Umzug auf Synology NAS 2020-06-04 13:20:10 +02:00
README.md Umzug auf Synology NAS 2020-06-04 13:20:10 +02:00

url-to-options NPM Version Build Status

Convert a WHATWG URL to an http.request/https.request options object.

Installation

Node.js >= 4 is required. To install, type this at the command line:

npm install url-to-options

Usage

const urlToOptions = require('url-to-options');

const url = new URL('http://user:pass@hostname:8080/');

const opts = urlToOptions(url);
//-> { auth:'user:pass', port:8080, … }