Just JavaScript
pedrocattori.com·11h·
Discuss: Hacker News
Flag this post

Published on November 17, 2025

Everyone means something different when they say something is “just JavaScript”.

So here’s what “just JavaScript” means to me, plain and simple:

The code should work without custom transforms

I chose this definition for two related reasons.

First, I want to know what my program is doing. I don’t mind if bundlers or build steps change how its done; go ahead and optimize my code! But when they affect what is being done in non-standard ways, that’s when I take issue with it.

Second, I want to bring all of my coding skills to bear on the problem. I want normal refactors to work, no questions asked. If I don’t get any red squiggles when I move some code from one place to another, I expect things to work.

It might not be a perfect definition. …

Similar Posts

Loading similar posts...