Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 695 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 695 Bytes

Redux-demystified

Introduction

patterns like Redux are complex. Stepping back and bringing things back to simple categories can help in understanding the underlying plumbing. This repository demonstrates in nodeJs with typescript (by making use of ts-node) how following Redux building blocks play together:

  • a store
  • actions
  • reducers

The sample how both a non-rx and a rx implementation.

Installation

npm install -g ts-node
npm install -g typescript
npm install

Running the project

npm start

using the real redux package

There is an additional branch use-redux-package, which does with minimal change the same stuff but with the real redux package.