Client to make HTTP request for NodeJS.
Examples of sending an HTTP request with a different request method.
const Client = require('@skuyjs/http-client');
Client
.get('https://jsonplaceholder.typicode.com/posts/1')
.then(result => {
console.log(result);
})
.catch(err => {
console.log(err);
});