exframe-request
v1.9.2
Published
Wrapper around axios that handles common patterns
Readme
exframe request
Wrapper around axios that handles common patterns
Installing
$ npm install exframe-requestExample
const { axios } = require('exframe-request');
// normal axios methods and everything
axios({
method: 'get',
url: 'http://example.com/data'
})
.then(response => { ... })