If you're new in React and you want to build an app with IndexedDB as your database, you're on the right page. In this article, we'll be looking at building a very small application which will add and remove items from an IndexedDB database, and upda... (more…)
Read more »
Shallow rendering, snapshot testing and many examples.
Read more »
I’ve seen several ways for handling events in React, however, handling them with higher-order functions is so much more elegant when you need to pass additional arguments:
Tada! (more…)
Read more »
React is a popular JavaScript framework for building user interfaces. This article shows why it was developed, how it handles user-controlled inputs, and what you should do to prevent cross-site scripting in React-based applications. (more…)
Read more »
Code splitting in Create React App is an easy way to reduce the size of your React.js app bundle. To do this in an app using React Router v4, we can asynchronously load our routes using the dynamic import() method that Create React App supports. (more…)
Read more »