Mark Erikson

Results 148 issues of Mark Erikson

Hi, I'm a Redux maintainer. I'd specifically recommend switching the logic to use our new official Redux Toolkit package. It includes utilities to simplify several common Redux use cases, including...

This PR: - Enables recording benchmarks with https://replay.io , so that I can inspect code behavior and do some analysis-based performance profiling - Updates to a new rev of the...

We can start adding more benchmark apps now. Pasting some other benchmark-ish repos that are worth investigating and potentially porting: https://github.com/mweststrate/redux-todomvc https://github.com/jscriptcoder/stressing-redux https://github.com/somebody32/high-performance-redux/tree/gh-pages/assets https://github.com/coderitual/redux-performance https://github.com/reduxjs/react-redux/issues/686#issuecomment-331261897 https://github.com/Kalkut/redux-data-frequency-benchmark Also, we should look...

The `stockticker` and `twitter-lite` benchmarks currently use an array for the root of the Redux state "tree", rather than an object with multiple slices. This is rather unrealistic. The `tree-view`...

Right now we're only measure FPS, plus the values from a Chrome trace (time spent "scripting", "rendering", and "painting"). These are better than nothing, but they seem insufficient. In particular,...

Over in https://github.com/reduxjs/react-redux/issues/983, @sebinsua pointed to https://github.com/speedracer/speedracer as a relevant tool for running benchmarks like this and reporting results. It looks very interesting, but also seems lacking in soem capabilities...

The React DevTools have been updated with the new profiling capabilities, but they require a release of React that implements the interaction tracking backend to make those functional. React 16.5...

Couple things I noticed using the repo this evening: - The setup script always tries to reinstall all dependencies every time - There doesn't seem to be a way to...

I see that immutable-ops depends on Ramda. But, inspecting the source, it looks like only two Ramda functions are actually being used: `curry` and `placeholder`. Would it be possible to...

I'm trying to use this to migrate the couple RN-related test files for React-Redux ( https://github.com/reduxjs/react-redux ) as part of switching from Jest to Vitest. I've found a couple places...