2017-React Native: developing using best practices: I am one of those who felt in love at first sight with it, so I will try to find out the best practices that should be applied to a React Native project in order to have an understandable, easily maintainable and scalable, and highly performant mobile app.
Build: 构建
Debug: 调试
react-native-debugger #Project#: The standalone app based on official debugger of React Native, and includes React Inspector / Redux DevTools
2017-I made React Native fast, you can too: The purpose of this article is to walk you through how you can use Native tools to track down and fix performance issues in your React Native app.
Moving Beyond Animations to User Interactions at 60 FPS in React Native: The async nature of the React Native bridge incurs an inherent performance penalty, preventing JavaScript code from running at high framerates. Modern animation libraries, like Animated, address this by minimizing passes over the bridge. User interactions, where UI continuously reacts to the user’s gestures, are a step further. How can we run those at 60 FPS?
2017-React Native Performance — An Updated Example: I’m working on my performance talk for React Amsterdam 2017, which is based on the post “Performance Limitations of React Native and How to Overcome Them”. I’ve decided to freshen up the example we’ll be discussing in order to walk through some exciting new API available today.