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