A minimal static UI language compiling to pure HTML
npm install @bitxdev/bitxA minimal static UI language that compiles .bitx files into pure HTML.
No JavaScript Runtime. No Virtual DOM. Just Semantic HTML.
``bash`
npm install -g @bitxdev/bitxor run directly
npx bitx build
App {
Page {
Column {
Text("Hello World")
Button("Click Me")
}
}
}
`$3
`bash
bitx build main.bitx
Generates dist/index.html
`$3
`bash
bitx dev main.bitx
Serve at http://localhost:3000
``