Bakhtina Sofya b84cb877be 1st comm 3 هفته پیش
..
LICENSE b84cb877be 1st comm 3 هفته پیش
README.md b84cb877be 1st comm 3 هفته پیش
index.js b84cb877be 1st comm 3 هفته پیش
package.json b84cb877be 1st comm 3 هفته پیش

README.md

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, … }