HTTP Client Wrapper
npm install @whitewizard/http-client
const HttpClient = require('@whitewizard/http-client');
const http = new HttpClient({ req, baseURL });
let exampleGetData = await http.get('/api');
let examplePostData = await http.post('/api', {id: 1});
``