Get up and running with WebFluent in under a minute.
Build from source (requires Rust):
git clone https://github.com/user/webfluent.git
cd webfluent
cargo build --release
The binary is at target/release/wf. Add it to your PATH.
Dashboard with routing, stores, forms, modals, animations.
wf init my-app -t spa
Marketing site with SSG, i18n, blog, contact form.
wf init my-site -t static
Reports, invoices, docs. Tables, code blocks, auto page breaks.
wf init my-report -t pdf
cd my-app
wf build
wf serve
Open http://localhost:3000 in your browser.
my-app/
+-- webfluent.app.json # Config
+-- src/
| +-- App.wf # Root (router, layout)
| +-- pages/
| +-- components/
| +-- stores/
| +-- translations/
+-- public/
+-- build/