Что-то про React – Telegram
Что-то про React
300 subscribers
3 photos
498 links
Немного про React.
Список статей и новостей подбирается полностью вручную.
Download Telegram
Add a Low Priority to the Scheduler

Nathan Schloss (n8schloss) made a PR to add another priority level to the experimental Scheduler package. This new priority will still resolve but only after everything else. This is useful for logging or sending data back to the server.

https://github.com/facebook/react/pull/14155
🎉 React 16.6.1 Patch Release

The latest patch release brings multiple bug fixes related to the recently released Suspense features. We can also expect a new alpha release soon.

https://github.com/facebook/react/releases/tag/v16.6.1
👷‍♀️ Allow Production Builds in DOM Fixture

In a contribution from Jan Pöschko (poeschko), the React DOM fixture app used for manually testing multiple React DOM features, now has an option to also test production builds.
https://github.com/facebook/react/pull/13786
Scheduler: Use MessageChannel instead of window

The previous implementation of the Scheduler used window.postMessage(). Since this will trigger all message listeners which can impact performance, we’re now using a unique MessageChannel instead.
https://github.com/facebook/react/pull/14234
🐢 Monomorphic Object Shape for Stable Builds

Adding properties to an object disables certain optimizations. To prevent this, we don’t add properties to the main React object in stable builds anymore.
https://github.com/facebook/react/pull/14309