Skip to content

Instantly share code, notes, and snippets.

@khalid32
Created July 28, 2017 09:52
Show Gist options
  • Select an option

  • Save khalid32/1dd1e8693283db2315e7a614cc74c995 to your computer and use it in GitHub Desktop.

Select an option

Save khalid32/1dd1e8693283db2315e7a614cc74c995 to your computer and use it in GitHub Desktop.
1. A description of React's new core algorithm, React Fiber
React Fiber is an ongoing reimplementation of React's core algorithm. It is the culmination of over two years of research by the React team.
The goal of React Fiber is to increase its suitability for areas like animation, layout, and gestures. Its headline feature is incremental rendering: the ability to split rendering work into chunks and spread it out over multiple frames.
Other key features include the ability to pause, abort, or reuse work as new updates come in; the ability to assign priority to different types of updates; and new concurrency primitives.
Lear more: https://github.com/acdlite/react-fiber-architecture
2. You can view its Timeline here: http://isfiberreadyyet.com
3. Fiber Principles: Contributing To Fiber
https://github.com/facebook/react/issues/7942
3++ Try React Fiber http://blog.revathskumar.com/.../react-fiber-try-it-now.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment