7 votes

React Fire: Modernizing React DOM

1 comment

  1. teaearlgraycold
    Link
    tl;dr: Everything here sounds good to me. Obviously there will be significant migration pains from this update.

    tl;dr:

    React Fire is an effort to modernize React DOM. Our goal is to make React better aligned with how the DOM works, revisit some controversial past decisions that led to problems, and make React smaller and faster.

    • Stop reflecting input values in the value attribute
    • Attach events at the React root rather than the document
    • Migrate from onChange to onInput and don’t polyfill it for uncontrolled components
    • Drastically simplify the event system
    • classNameclass

    Everything here sounds good to me. Obviously there will be significant migration pains from this update.

    3 votes