axios-time
Axios plugin to measure the actual time it takes for a request to complete
Installation
You can install this plugin using NPM
> npm i axios-time
Basic Usage
The example below will add timing data to the request-response cycle.
const axios = require('axios');
const axiosTime = require('axios-time');
axiosTime(axios);
try {
const response = await axios.get('/user');
} catch(err) {
}
response.timings object example:
{
"timingEnd": 1599035291441,
"timingStart": 1599035289182,
"elapsedTime": 2259
}