I built JetScript, a new minimal scripting language for building MVPs and web UIs – in just 14 hours.
It focuses on:
- Poetic, JSX-free syntax (inspired by natural language) - No build, no config, just `jets run app.jet` - State, UI, and routing — all in one expressive DSL - A philosophy: write fast, burn faster (built for hackathons & idea iteration)
Here’s an example:
route "/" => state count = 0 view: h1 "Count: #{count}" button { onclick: inc(count) } "+"
JetScript isn’t meant to scale. It’s meant to create — quickly.
GitHub: https://github.com/jetscript-lang/JetScript X/Twitter: https://x.com/structax
Would love your feedback