https://github.com/alexanderclarktx/lex
a relaxed web framework
https://github.com/alexanderclarktx/lex
framework functional state-management typescript web
Last synced: 3 months ago
JSON representation
a relaxed web framework
- Host: GitHub
- URL: https://github.com/alexanderclarktx/lex
- Owner: alexanderclarktx
- License: mit
- Created: 2025-08-27T14:42:22.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-09-09T02:52:14.000Z (7 months ago)
- Last Synced: 2025-09-09T03:56:16.793Z (7 months ago)
- Topics: framework, functional, state-management, typescript, web
- Language: TypeScript
- Homepage: https://alexanderclarktx.github.io/Lex/
- Size: 22.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README
__Lex__ is a small web runtime. Write your entire webapp with TypeScript.
### Lex syntax
```ts
const app = Lex({
state: {},
elements: [
Ball("#00ffaa"), Ball("#ffaa00"), Ball("#aa00ff"), Ball("#ff00aa")
]
})
```
### running the repo
```bash
# install dependencies
bun install
# run the webapp with hot code reloading
bun dev
```