168 followers
Full-Stack Developer, Entrepreneur and Co-Founder of Coderplex.
Building https://coderplex.in
Checkout my portfolio at https://bhanuteja.dev
Subscribe to my newsletter and never miss my upcoming articles
I wanted to start blogging in Aug of 2020. I decided to use @hashnode for my blog. It was the best decision that I made. I wrote 27 technical articles so far. Most of them are about frontend web development. A thread ๐งต about each of these articles i...
Hello World ๐ Next.js has become my go-to framework for almost every project that I make. So, I made a starter template that I can just use and get started easily. In this article, I will show you how to use the starter template that I made and depl...
Hello World ๐ In this article, I will list out all the git commands that I use very frequently. This is not in any way a complete list, just the commands that I use very often. This is intended to be used as a quick reference to perform an action th...
Hello World ๐ In this article, we will see the order in which different useEffect callbacks and cleanups happen. We will also see how it differs when the app mounts, unmounts, updates. This image is taken from https://github.com/donavon/hook-flow...
Hello World ๐ In this tutorial, we will see how to easily set up authentication for Next.js apps. Step 1. Create Next.js application yarn create next-app next-auth # npx create-next-app next-auth This will create a new Next.js application. You can ...
Hello World ๐ Hooks are special types of functions in React that you can call inside React functional components. They let you store data, add interactivity, and perform some actions, otherwise known as side-effects. The most common hooks are: useS...