~/priyank$
> Initializing portfolio...
> Loading components... ✓
> Fetching experience... ✓
> Compiling skills... ✓
> Ready.
~/priyank $
~/home/blog

Writing about
what I build.

Deep dives into React, Next.js, performance, and the craft of building things that work well.

6 articles published
blog.config.ts
const blog = {
author"Priyank",
topics: ["React""Next.js""Perf"],
posts6,
coffeeCountInfinity, // no cap
}
> 
Featured Post
All Posts
5 more
What Render and Re-Render Actually Mean in React
#react#rendering#performance

What Render and Re-Render Actually Mean in React

Render is not a full reload, and re-render does not always mean DOM changes. A practical guide to React's render pipeline, commits, React.memo, useMemo, and useCallback.

13 Aug 202618 min read
Why React Re-Renders
#react#performance#rendering

Why React Re-Renders

A detailed, practical guide to React re-renders: state, props, context, identity, memoization, keys, Strict Mode, and how to debug the renders that make your app sweat.

11 Aug 202622 min read
Next.js Rendering & Bundle Simulator
#next.js#performance#bundlesize

Next.js Rendering & Bundle Simulator

An interactive playground. Pick a heavy component, pick a rendering strategy, and watch how your initial JS payload, LCP, and TBT change in real time. The same code, shipped four different ways.

09 Jul 202616 min read
Code Splitting & Lazy Loading in React
#react#performance#javascript

Code Splitting & Lazy Loading in React

Learn how to make your React app lightning fast by splitting your code into smaller chunks and loading them only when needed. Explained so simply, even a kid could get it.

02 May 202618 min read
Next.js Performance Patterns I Use in Every Project (To Keep Lighthouse from Crying)
#next.js#performance#webvitals

Next.js Performance Patterns I Use in Every Project (To Keep Lighthouse from Crying)

Server Components, next/dynamic, priority images, script strategies, and streaming Suspense. The architectural rules I reach for on every project to keep the main thread breathing and Core Web Vitals in the green.

May 20269 min read