Make your offline-first React app with Redux-Offline
Last week, I received a request from a client to make an EPOS app. The main requirement is the app must work even when internet… Read More »Make your offline-first React app with Redux-Offline
Last week, I received a request from a client to make an EPOS app. The main requirement is the app must work even when internet… Read More »Make your offline-first React app with Redux-Offline
Updated: I have created a live coding version for this tutorial. Check it at here: https://youtu.be/MdeqXWo4fOI Login is usually the first page we have to build… Read More »Login flow with React and Redux
React component use state and prop to render and it tracks changes of state and prop to re-render the component. There are many techniques to… Read More »Why Immutable ?
We, developers know that we will work with modal a lot. My favorite library do this job is bootbox.js. Unfortunately, this library is not implemented in React & Redux. Let’s implement it by ourself.
There are good and bad things about 2 way data-binding in AngularJS. It can be very handy for small app because it’s save a lot of coding time. But on the other hand, when your app growing, it adds complexity to AngularJS digest’s cycle and hurt UI performance, it also makes your app harder to debug because your don’t know which directives make changes to your data.
Redux comes to the rescue.