.. | ||
migrations | ||
src | ||
.gitignore | ||
Cargo.toml | ||
LICENSE | ||
README.md | ||
style.css | ||
Todos.db |
Leptos Todo App Sqlite
This example creates a basic todo app with an Axum backend that uses Leptos' server functions to call sqlx from the client and seamlessly run it on the server.
Client Side Rendering
To run it as a Client Side App, you can issue trunk serve --open
in the root. This will build the entire
app into one CSR bundle. Make sure you have trunk installed with cargo install trunk
.
Server Side Rendering with cargo-leptos
cargo-leptos is now the easiest and most featureful way to build server side rendered apps with hydration. It provides automatic recompilation of client and server code, wasm optimisation, CSS minification, and more! Check out more about it here
- Install cargo-leptos
cargo install --locked cargo-leptos
- Build the site in watch mode, recompiling on file changes
cargo leptos watch
- When ready to deploy, run
cargo leptos build --release
Server Side Rendering without cargo-leptos
To run it as a server side app with hydration, you'll need to have wasm-pack installed.
0. Edit the [package.metadata.leptos]
section and set site-root
to "pkg"
. This tells leptos that the WASM/JS files generated by wasm-pack
are available at ./pkg
. Building to alternative folders is not supported at this time
- Install wasm-pack
cargo install wasm-pack
- Build the Webassembly used to hydrate the HTML from the server
wasm-pack build --target=web --debug --no-default-features --features=hydrate
- Run the server to serve the Webassembly, JS, and HTML
cargo run --no-default-features --features=ssr