Skip to content

Instantly share code, notes, and snippets.

@vasanthk
Forked from geoffreydhuyvetters/react_fiber.md
Created December 18, 2016 17:14
Show Gist options
  • Save vasanthk/210d24f2d77131bee05e3a97128c33f1 to your computer and use it in GitHub Desktop.
Save vasanthk/210d24f2d77131bee05e3a97128c33f1 to your computer and use it in GitHub Desktop.
What is React Fiber? And how can I try it out today?

What is React Fiber? And how can I try it out today?

what?

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.

why?

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.

how can I try it out today?

  1. git clone https://github.com/facebook/react
  2. gulp react:extract-errors (i've added an npm script to avoid installing gulp globally)
  3. npm run build
  4. use react.js / react-dom-fiber.js in the /build folder

You can start with this example or the modularized / ES2015 version

status?

Fiber isn't completely ready yet http://isfiberreadyyet.com/.
Scheduled for release in 16.0.0.

thanks @threepointone for the build steps

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment