Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 922 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 922 Bytes

axios-response-logger npm version Build Status

An interceptor which logs responses

success response error response

Installing

npm install axios-response-logger --save

Usage

Simply require / import the library as part of your bootstrapping (before your requests).

// es5
require('axios-response-logger');

// es6
import 'axios-response-logger';

Running Tests

npm test