JavaScript Proxy: What and Why?

4 years ago

EcmaScript 2015 introduced yet another feature that has not been used widely yet. A JavaScript proxy allows us to wrap…

Visual Studio Code Snippets: Boost productivity with shortcuts

4 years ago

As developers, we always want to be more productive. And who does not like to write more code using a…

Avoiding race conditions and memory leaks in React useEffect

4 years ago

Let us take a look at an implementation of getting data from an API request and see if there is…

How to easily build good habits: 4 tips backed by research

4 years ago

The best way to move forward towards achieving our dreams is to commit to them. And habits are the compound…

Object initialization shorthand notations in JavaScript

4 years ago

I was recently working on a project in which I was trying to use a shorthand notation for destructuring assignment…

Using the useCallback React hook

4 years ago

The useCallback React hook is a useful hook that can help in optimizing the rendering performance of our functional React…

Load balancing and its different types

4 years ago

As our application scales to multiple users, we need to start thinking about scaling our servers and applications with it.…

Understanding the useRef React hook

4 years ago

Continuing our React hooks series, we will learn about the useRef React hook in this blog post. The useRef React…

How to cancel an HTTP fetch request

4 years ago

JavaScript promises have been a huge catalyst for asynchronous coding in the language. They have vastly improved the performance and…

Use redux-like middleware for useReducer in React

4 years ago

If you have used Redux before, you would be aware of the concept of middlewares. Now that useReducer has become…

Advertisements