@product-live/request.libary
v1.0.13
Published
http request util
Downloads
8
Keywords
Readme
Intro
Simple request object without having to pull 47 extra packages
Install
npm install --save git+https://github.com/anzerr/request.libary.git
npm install --save @anzerr/request.libary
Example
const Request = require('request.libary');
new Request('https://google.com').get('/').then((res) => {
console.log(res.status(), res.body().toString());
});