React.js

Learn React with one BIG Project [NOTES included] – Demo and Video Link

Hey everyone , I created a full fledged video to help others in learning React with ease. The video includes : 1. Whiteboard Explanations for every concept that we use in the video. 2. NOTES will be also be given for future reference and I believe short notes help in recalling the concepts easily because…

Demystifying the useRef Hook in 6 minutes

In this video, we will learn about the useRef hook in React. This hook is very similar to the useState hook that we had learnt earlier in the sense that it also persists the values across re-renders but unlike useState, useRef does not cause a re-render of the component. We will see a couple of…

Create your own Exercise Planner using React.js [Complete Code]

Hey everyone , In this article, let us see how we can build an Exercise Planner Application using React.js. Demo for the Project & Initial Setup So the first thing you need to do is to create a new project.Make sure to install Node.js onto your system because we will be needing that for our project….

Memoizing with React.useMemo

Hey everyone 👋🏻, In this article, let us learn about a very special React Hook called as the useMemo hook and understand how and when to use it. What is the useMemo hook ? useMemo is a React Hook that was introduced to memoize expensive computations. Let us understand some basics about this. In order…

✨Top resources to learn React.js [in no particular order]

Hey everyone 👋🏻, I recently wrote an article where I mentioned about React Projects Every Beginner Should Try : https://dev.to/thenerdydev/10-react-projects-every-beginner-should-try-fk9. In this article, I will be mentioning the top 5 resources that I highly recommend if you want to learn React.js. PS : I am not an affiliate of any of these resources/courses. These are just some of…

A Brief Introduction to React.js

Hey everyone 👋🏻, In this article, let us cover a brief introduction to React.js Introduction React is an open source, front-end JavaScript Library for building modern sleek user interfaces. It is maintained by Facebook. It is used to create SPAs. Why React ? Uses component based architecture to structure your application. Allows you to write reusable components that…