node-httpx
Advanced tools
Comparing version 0.1.2 to 0.1.3
{ | ||
"name": "node-httpx", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Provides a TLS-agnostic HTTP server and eliminates the redundancy in providing both secure and insecure servers.", | ||
@@ -5,0 +5,0 @@ "main": "httpx.js", |
@@ -95,2 +95,12 @@ # node-httpx | ||
## Specific Requests | ||
In addition to native request objects, node-httpx provides the request and get functions of the http and https modules. | ||
| Function | Treat As | Documentation | | ||
|--------------------|---------------|------------------------------------------------------------------------| | ||
| httpx.httpRequest | http.request | https://nodejs.org/api/http.html#http_http_request_options_callback | | ||
| httpx.httpGet | http.get | https://nodejs.org/api/http.html#http_http_get_options_callback | | ||
| httpx.httpsRequest | https.request | https://nodejs.org/api/https.html#https_https_request_options_callback | | ||
| httpx.httpsGet | https.get | https://nodejs.org/api/https.html#https_https_get_options_callback | | ||
## httpx.request | ||
@@ -100,2 +110,1 @@ | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26260
109