no-reducer
  • πŸš€Introduction
    • ☺️Demonstration
  • πŸ–₯️Installation
  • πŸ“–No-Reducer Actions
    • 🎯destination path
    • create
      • create an object/array
    • insert
      • insert to an array item
    • remove
      • remove with condition
      • remove without condition
    • replace
      • replace with condition
      • replace without condition
    • update
      • update with condition
    • append
    • clear
      • clear an array item
Powered by GitBook
On this page

Installation

PreviousDemonstrationNextNo-Reducer Actions

Last updated 2 years ago

npm i no-reducer

To use no-reducer, you just need to do a simple installation by importing no-reducer on the combineReducers page. You can give any name you like to the store object.

For instance, I named it ds when I used it with Redux's combineReducers

import { combineReducers } from "redux";
import { reducer } from "no-reducer";

export default combineReducers({
    ds: reducer
});

πŸ–₯️