1.0.1 • Published 1 year ago

@achmadk/axios-time v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

npm

:package: @achmadk/axios-time

Axios plugin to measure the actual time it takes for a request to complete. It has TypeScript and a native ES Module support compared to axios-time.

:wrench: Installation

You can install this plugin using NPM or any other package manager

> npm i @achmadk/axios-time

:bike: Basic Usage

The example below will add timing data to the request-response cycle.

import axios from 'axios';
import axiosTime from 'axios-time';

axiosTime(axios);

try {
    const response = await axios.get('/user');
} catch(err) {
}

response.timings object example:

{
  "timingEnd": 1599035291441,   // Timestamp of the start of the request (in Unix Epoch milliseconds).
  "timingStart": 1599035289182, // Timestamp when the response ended (in Unix Epoch milliseconds).
  "elapsedTime": 2259           // Duration of the entire request/response in milliseconds.
}

License

MIT

1.0.1

1 year ago

1.0.0

1 year ago