An open API service indexing awesome lists of open source software.

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

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
```