https://github.com/jaystack/redux-repatch-performance-comparison
Measure performance between Redux and Repatch
https://github.com/jaystack/redux-repatch-performance-comparison
Last synced: about 2 months ago
JSON representation
Measure performance between Redux and Repatch
- Host: GitHub
- URL: https://github.com/jaystack/redux-repatch-performance-comparison
- Owner: jaystack
- Created: 2017-08-30T13:21:46.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-04T12:50:13.000Z (over 7 years ago)
- Last Synced: 2025-03-27T08:11:22.538Z (2 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 12
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# redux-repatch-performance-comparison
Measure performance between [Redux](https://www.npmjs.com/package/redux) and [Repatch](https://www.npmjs.com/package/repatch)## Run
```
npm install
node .
```This comparison dispatches a big amount of actions to both of redux and repatch stores. I used a very simple increment action for both of measurement. I got many questions, why did I use these unrealistic actions. The reason is, that I would like to prevent the additional overhead via reducing, and ensure that the measurement can be independent from other effects, like object assigning.
## Results
Redux needs more time to dispatching these actions than Repatch.