Edge Runtime and Edge Functions in Next.js — Explained the Easy WayWeb Development is being evolved in every now and then. Every change brings some enhancement in performance and user experiences. The concept of Edge Computing is one of the most significant recent shifts. This post will demystify the Edge Runtime al...Feb 3, 2026·4 min read·231
Master Drizzle ORMA Few Important Words I am consciously avoiding unimportant, gibberish talk. I was watching Code Genix’s YT tutorial on drizzle-orm and I found it very much useful and comprehensive. So, I noted while watching the tutorial. After watching the tutoria...Mar 7, 2025·15 min read·601
Infinite Scrolling of TanStack Query 🌸This article is a continuation of the previous article. So, check that out before you continue. For infinite scrolling, create an axios function for api calling: export const getProducts = async ({ pageParam }: { pageParam: number }) => { return ( ...Mar 4, 2025·3 min read·43
Tanstack Query 🏝️ / React Query 🌸Intro This article is more like a note or cheatsheet. I hope this approach is not going to be confusing for you if you are already familiar with redux or such libraries before. Most of it is actually noted from the Code Genix’s Tutorial. export funct...Mar 2, 2025·7 min read·124
React 19 - Get A Clear UnderstandingReact 19 came out on April 25, 2024. The JavaScript world changes so quickly that it can sometimes feel overwhelming to keep up. But when these changes are meant to make your life as a React developer easier, it’s worth taking a look, right? Since Re...Nov 21, 2024·11 min read·650
Dockerize PERN-TypeScript App Using Prisma ORM With Docker ComposeIntroduction I know you already understand the benefits of using Docker in development, so let's skip the usual details. But I do want to point out that dockerizing an app with docker-compose is much more beneficial than not using docker-compose. Sim...Oct 16, 2024·10 min read·170
Simplifying Type Narrowing and Guards in TypeScriptIntroduction to Narrowing Concept Typescript documentation explains this topic really well. I am not going to copy and paste the same description here, rather I want to make it even simpler and shorter. Let’s look at a problem and see how the concept...Oct 9, 2024·9 min read·60