Ask HN: Who is using React Native?
1–3 of 3 posts
Re: Ask HN: Who is using React Native?
#2Re: Ask HN: Who is using React Native?
#3Our team consists only of web developers, but we really wanted app that feels native, so we evaluated the tools and came to conclusion that react-native will suit our needs.
I am not well informed about mobile app development in general but I found experience with react-native quite good.
Debugging process is quite the same to web development, open chrome go to sources tab and set breakpoints as you wish. Use CTRL+R to refresh the app the same as you would on the webpage. Performance is OK but generally you have to be more careful than on the web. Implementing `shouldComponentUpdate` can lead to drastic performance improvements.
Writing bridges between javascript and native code is really easy, even for somebody who has no idea about obj-c. So integrating custom third party libraries is quite easy.
I really enjoy development with react-native and would recommend it to any webdev who want to try app development.