axios-debug
v0.0.4
Published
Prints out axios requests and responses
Downloads
6,433
Readme
Axios Debug
A convenient way to view the requests and responses when using axios.
Installation
npm i axios-debug
Usage
// Axios must be available.
import axios from 'axios';
// Pass axios to the imported 'axios-debug' function.
require('axios-debug')(axios);
// Use axios as normal.
axios.get('/cats');