A minimal static UI language that compiles .bitx files into pure HTML.
No JavaScript Runtime. No Virtual DOM. Just Semantic HTML.
npm install -g @bitxdev/bitx
# or run directly
npx bitx buildApp {
Page {
Column {
Text("Hello World")
Button("Click Me")
}
}
}
bitx build main.bitx
# Generates dist/index.htmlbitx dev main.bitx
# Serve at http://localhost:3000- Zero Runtime: Compiles to raw HTML/CSS.
- Type Safe: (Coming soon)
- Fast: Instant compilation.
ISC