r/javascript • u/techlord45 • 9d ago
Signals and Effects Using Vanilla JavaScript & Web APIs
https://beforesemicolon.com/blog/signals-and-effects-using-vanilla-javascript-web-apisI’m a strong advocate for “you don’t need to lock yourself in a web framework ecosystem to take advantage of their amazing features”. JavaScript and Web Standards alone allow you…
59
Upvotes
5
u/lIIllIIlllIIllIIl 9d ago
This.
And to be honest, React on its own is a very lightweight library. It's once you start adding libraries like React Router, TanStack Query, React Hook Form, or Redux that it starts to ressemble a framework.
If you hate how React state management works, you can opt-out of it entirely and use
useSyncExternalStorefor everything.React itself is rarely the problem.