HttpClient class for nodejs
import { HttpClient } from '@evojs/http-client';
const http = new HttpClient();
http
.get('https://registry.npmjs.org/@evojs/logger')
.then(res => res.body())
.then(packument => {
console.log(packument);
});
Licensed under MIT license