Hacker News new | ask | show | jobs
by badbanana 1551 days ago
Not React code but SolidJS uses JSX to produce reactive code compile time in the same vein as Svelte.
2 comments

Yeah I threw together a simple wiki on top of a CRDT using solidjs a couple weeks ago. It’s delightful - it’s basically react but compiled to be smaller and faster. (It looks and feels like react but there’s no giant runtime, and no vdom diffing). And it has a really nice API for reactive state.

I haven’t built anything big with it yet but I like what I see so far!

IMP SolidJS fixes a lot of issue React as without leave the "React-ish" way to build components.