.. | ||
src | ||
Cargo.toml | ||
index.html | ||
LICENSE | ||
README.md | ||
style.css |
Leptos Hacker News Example
This example creates a basic clone of the Hacker News site. It showcases Leptos’s ability to create both a client-side rendered app, and a server side rendered app with hydration, in a single repository. It uses Actix as its backend.
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.
If you don't have
trunk
installed, click here for install instructions.
Server Side Rendering With Hydration
To run it as a server side app with hydration, first you should run
wasm-pack build --target=web --no-default-features --features=hydrate
to generate the WebAssembly to hydrate the HTML that is generated on the server.
Then run the server with cargo run
to serve the server side rendered HTML and the WASM bundle for hydration.
cargo run --no-default-features --features=ssr
Note that if your hydration code changes, you will have to rerun the wasm-pack command above This should be temporary, and vastly improve once cargo-leptos becomes ready for prime time!