18 lines
282 B
Markdown
18 lines
282 B
Markdown
# Fes
|
|
|
|
A lightweight, static, and opinionated microframework.
|
|
|
|
## Usage
|
|
|
|
This is the `fes new <?>` output
|
|
```lua
|
|
local fes = require("fes")
|
|
local site = fes.fes()
|
|
|
|
site:h1("Hello, World!")
|
|
|
|
return site
|
|
```
|
|
|
|
This can be ran with `fes run .` where `.` is the location of the Fes.toml
|