This is a complete rewrite of tkeron, migrating from Node.js to Bun runtime. Currently only basic build functionality is available. More features coming soon.
tkeron is a lightweight microframework for web development with TypeScript, focused on:
- Simplicity: Exclusive use of TypeScript, HTML, and CSS, without additional configurations or new syntax.
- 'No magic' philosophy: Behavior is always explicit and controlled by the developer.
- Bun-powered: Fast builds and modern tooling.
- ✅ Build command: Bundle TypeScript and process HTML files
tk build <sourceDir> <targetDir>
- 🚧 Project initialization (
tk init) - 🚧 Page and component generators
- 🚧 Dev server with hot reloading
- 🚧 Pre-rendering capabilities
- 🚧 Component management library
Install tkeron globally using npm:
npm i -g tkeronRequirements: Bun runtime (Node.js support coming later)
See the examples/basic_build directory for a working example.