
$ tinyreq

Tiny library for making http(s) requests.
Installation
$ npm i tinyreq
CLI Usage
You can install the package globally and use it as command line tool:
$ npm i -g tinyreq
Then, run tinyreq --help
and see what the cli tool can do.
Example
Here is an example how to use this package as library.
var TinyReq = require("tinyreq");
TinyReq("http://example.com/", function (err, body) {
console.log(err || body);
});
Documentation
For full API reference, see the DOCUMENTATION.md file.
How to contribute
Have an idea? Found a bug? See how to contribute.
License
KINDLY © Ionică Bizău–The LICENSE file contains
a copy of the license.