This app demonstrates how you can build your own version of Redux. my-redux-example is an app which is using this package to maintain it's state. You can view the whole implementation in this file.
import createStore from "my-redux";const reducer = (state = initialState, action) =>
action.type === "INCREMENT"
? { count: state.count + action.payload.count }
: state;Step 3: Pass that reducer function to the createStore function along with the initialState of your app
this.store = createStore(reducer, { count: 0 });this.store.dispatch({
type: "INCREMENT",
payload: {
count: 1
}
});You store should now reflect the updated state. You can verify that by logging the state of your store:
console.log(this.store.getState());my-redux-example is an app which is using this package to maintain it's state. You can view the whole implementation in this file.
$ git clone https://github.com/ghoshnirmalya/my-redux
$ cd my-redux
$ yarn install$ yarn test$ yarn coverage$ yarn build$ yarn version patch|minor|major
$ yarn publishIt'll automatically run test, docs, build and generate CHANGELOG.md file.
MIT © Nirmalya Ghosh
