Mark Erikson

Results 806 comments of Mark Erikson

Another potential source: the JS framework benchmarks repo at https://github.com/krausest/js-framework-benchmark .

@Avi98: sure, go ahead, thanks!

Hmm. Not exactly sure what's going on there. Looks like NPM was having trouble copying a file during the install process. Does this happen every time?

More relevant examples we can draw from: https://medium.com/@ryansolid/react-hooks-the-most-performant-way-to-write-react-393e135e1cc

Known issue. I've already updated the "Redux Essentials" tutorial example app to use Vite and work on Node 18+, but haven't had time to update the "Fundamentals", and realistically it...

Yeah, both tutorials were written in 2020, and used CRA4. I've already revamped the "Essentials" tutorial to use Vite with the existing JS code, and am working on a full...

Other relevant info: - Articles and discussions on React styling: https://github.com/markerikson/react-redux-links/blob/master/react-styling.md

Other relevant info: - Articles on React performance: https://github.com/markerikson/react-redux-links/blob/master/react-performance.md

The issue is that `` and the other RLC components just pass through props to the underlying ``. Using `withRouter` directly on one of those components doesn't make any sense,...

@Rakk4403 : Yeah, that seems more reasonable. To recap a bit: you only need to use `withRouter()` if a component needs access to `this.props.history`, `this.props.location`, or `this.props.match`. A component that...