The package
for making HTTP / HTTPS request into the endpoint.
Check the documentation
Install the module
with npm
$ npm install -D request-lib
- To make quick GET | POST | PUT | DELETE request.
const REQUEST_LIB = require('request-lib');
REQUEST_LIB.get({
url: '{endpoint}',
params: {
"page": 1,
"limit": 10
},
headers: {
"authorization": "bearer {access_token}"
}
})
.then((response) => {
/* The response as response text (UTF-8) */
console.log(response.response_text);
}).catch((error) => {
/* Logs the error for further debugging */
console.log(error);
});
├── docs
│ └── how-to-use.md
├── examples
│ └── make-local-request.js
├── libs
│ └── Request.js
├── src/
│ └── svg
│ ├── buld-status.svg
│ ├── npm.svg
│ └── Request.js
├── _config.yml
├── .gitignore
├── index.js
├── LICENSE
├── package.json
├── README.md
- http / https module - provides HTTP / HTTPS request
- url-parser - provides utility to parse URL
- querystring - provides utility to parse querystring
This module does NOT collect and send any user data. All the operations on the module are done locally on the execution time.
MIT License