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

15/03/2026
`this` and `globalThis` in Node.js: What They Really Are

`this` is one of JavaScript's most misunderstood keywords, and Node.js adds its own twists on top. This post breaks down exactly how `this` behaves in every context you'll encounter, why `globalThis` exists, and the subtle gotchas that catch even experienced developers off guard.

4 min read
JavaScript & Web APIs
javascriptnodejsthis keyword+5
AD
Atharv Dange
12/03/2026
Understanding Node.js Architecture: A Deep Dive into V8, libuv, and Everything in Between

Node.js is more than just "JavaScript on the server." It's a carefully assembled runtime built on top of battle-tested components that make non-blocking I/O possible. This post breaks down how those components fit together, what they actually do, and why the design choices matter.

20 min read
JavaScript & Web APIs
nodejsjavascriptv8+7
AD
Atharv Dange
11/03/2026
Understanding Object-Oriented Programming in JavaScript

Object-Oriented Programming (OOP) is a way of organizing code around real-world entities, and JavaScript supports it natively through classes. This post walks you through what OOP actually means, how classes work in JS, and why it makes your code cleaner and more reusable.

8 min read
JavaScript & Web APIs
javascriptoopclasses+6
AD
Atharv Dange