刘琳琳 97c35fdf0d 航汇HHArome小程序容器演示 2 tháng trước cách đây
..
LICENSE 97c35fdf0d 航汇HHArome小程序容器演示 2 tháng trước cách đây
README.md 97c35fdf0d 航汇HHArome小程序容器演示 2 tháng trước cách đây
index.js 97c35fdf0d 航汇HHArome小程序容器演示 2 tháng trước cách đây
package.json 97c35fdf0d 航汇HHArome小程序容器演示 2 tháng trước cách đây

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