https://github.com/anzerr/request.libary
http request util
https://github.com/anzerr/request.libary
curl http nodejs request util
Last synced: 9 months ago
JSON representation
http request util
- Host: GitHub
- URL: https://github.com/anzerr/request.libary
- Owner: anzerr
- License: mit
- Created: 2018-12-20T14:19:05.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-21T16:12:17.000Z (about 4 years ago)
- Last Synced: 2025-05-08T04:55:55.924Z (9 months ago)
- Topics: curl, http, nodejs, request, util
- Language: JavaScript
- Homepage:
- Size: 135 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### `Intro`



Simple request object without having to pull 47 extra packages
#### `Install`
``` bash
npm install --save git+https://github.com/anzerr/request.libary.git
npm install --save @anzerr/request.libary
```
### `Example`
``` javascript
const Request = require('request.libary');
new Request('https://google.com').get('/').then((res) => {
console.log(res.status(), res.body().toString());
});
```