Imagine this:
Every HTML element can be enriched, listened to, updated…
Without losing its native nature.
No virtual DOM.
No magic.
No transformations.
Just a thin layer to stay close to your intent.
And the best part?
The same code works everywhere — whether you import it via a CDN or use it in a bundled project.
Next week: I’ll share what I’ve been building in this direction.
Thanks for your post! Vanilla JS is enough in many cases. Most static websites don't need much frontend JavaScript or none at all, especially no JS library or framework. I'm still wondering about your recent post though where you
import ... from 'X'
in your screenshot, which, to me, looks like using a framework (while we have native DOM manipulation methods in vanilla JS).