When we start building a Python project that goes beyond simple scripts, we tend to start using third-party dependencies. When…
EcmaScript 2015 introduced yet another feature that has not been used widely yet. A JavaScript proxy allows us to wrap…
Let us take a look at an implementation of getting data from an API request and see if there is…
I was recently working on a project in which I was trying to use a shorthand notation for destructuring assignment…
The useCallback React hook is a useful hook that can help in optimizing the rendering performance of our functional React…
Continuing our React hooks series, we will learn about the useRef React hook in this blog post. The useRef React…
JavaScript promises have been a huge catalyst for asynchronous coding in the language. They have vastly improved the performance and…
If you have used Redux before, you would be aware of the concept of middlewares. Now that useReducer has become…
If you have been using react for a while, chances are you have come across the need to extract some…
If you have been writing class components for a while, you might be familiar with the callback functionality that the…