Redux reducers for fetching data with Axios HTTP client. Current stable version is 0.3.20. This library provides AxiosReducer and AxiosRestReducer classes that generate Redux reducers and async thunk actions for common CRUD operations (GET, POST, PUT, PATCH, DELETE). It depends on redux and redux-thunk, and integrates with Axios. The library is no longer actively maintained and has not been updated since 2017. Use with caution in new projects; consider modern alternatives like RTK Query or React Query for data fetching.
npm install redux-axios-reducersNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows setup of AxiosReducer with Redux store, redux-thunk middleware, and dispatching a GET action.
Migrate to a more maintained library for data fetching with Redux.
Ensure configure is called in the combineReducers setup.
Install redux-thunk and apply middleware: applyMiddleware(thunk)
Update any code referring to old TYPES (e.g., 'ASYNC_USERS_FETCHING' -> 'ASYNC/users/FETCHING').
Use applyMiddleware(thunk) when creating store
Use 'new AxiosReducer({ name: 'users' })'Install redux-thunk and add to middleware: applyMiddleware(thunk)