Javascript Api Client
Javascript api client wrapper around Axios.
Installation
With yarn
yarn add js-api-client
With npm
npm install js-api-client --save
Usage
; const client = baseURL: 'https://www.some-api-base-url.com'; // get const getResponse = client ; // post const userData = firstName: 'Luis' lastName: 'Colon'; const postResponse = client ; // etc