0.0.1 • Published 6 years ago
requesta v0.0.1
requesta
A very lightweight HTTP client for Node
Install
npm i requestaUse requesta!
Require the library.
const r = require('requesta');Let's make a request in an async function.
(async () => {
const res = await r('https://hacker-news.firebaseio.com/v0/item/8863.json').send();
console.log(await res.text());
})();... more example to come...
0.0.1
6 years ago