1.3.4 • Published 8 months ago
@whitewizard/http-client v1.3.4
HTTP Client
Usage
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});