React provides no built-in way to do data loading - it's left for you to implement. Doing this is tricky in a React app that uses server side rendering (SSR) because client and server rendering work quite differently: Client render is async so data can be... (more…)
Read more »
A few months ago, Facebook announced the release of React Native 0.61. (more…)
Read more »
Ejecting your Create React App has major tradeoffs. Yes, it gives you more choices, but future configurations are time-consuming, expensive, and difficult. (more…)
Read more »
When you want to use gRPC in your React Native app there is no official support yet, but that shouldn’t stop you! In this post I’ll show… (more…)
Read more »
Introduction Javascript is a single thread programming language. That is when you have code something like this The second line doesn’t get executed till the first one gets completed. Mostly this won’t be a problem since millions of calculations are... (more…)
Read more »