Skip to main content
From Scratch LogoFrom Scratch
TECH BLOG & JOURNEY

Writing code. Sharing ideas.

I turn ideas into products. From concept to deployment, building with modern tools and sharing everything I learn along the way.

...
EXPERIMENTS
...
ARTICLES
...
CATEGORIES
constdeveloper={
name:"Atharv",
focus:"Full Stack",
status:"drafting post"
}
Trending Posts

Recent Posts

10/05/2026
What is Middleware in Express and How It Works

Middleware is code that runs between a request arriving and a response being sent. In Express, every middleware function in the chain gets a chance to inspect, modify, or stop a request. This post covers what middleware is, how `next()` controls the flow, and where it gets used in real applications.

3 min read
Frameworks & Tools
expressmiddlewarenodejs+5
AD
Atharv Dange
10/05/2026
Destructuring in JavaScript

Destructuring is a concise syntax for pulling values out of arrays and objects into individual variables. This post covers array destructuring, object destructuring, default values, and the real-world patterns where this shines.

3 min read
JavaScript & Web APIs
javascriptdestructuringes6+4
AD
Atharv Dange
10/05/2026
Why Node.js is Perfect for Building Fast Web Applications

Node.js isn't fast because of raw processing power. It's fast because it never waits around when there's work to do. This post covers the architectural decisions that make Node.js well-suited for high-concurrency web applications.

5 min read
Frameworks & Tools
nodejsperformancenon-blocking+5
AD
Atharv Dange