Built with Kittine — this page is compiled Kittine (.kitty) source, not hand-written HTML or a JavaScript framework.

Install

Get the toolchain running

Kittine is built from source. The steps below are the exact sequence used to build every example in this repo, for both CSR and SSR targets.

# 1. build the compiler
cd kittine-compiler && cargo build --release

# 2. install dependencies
npm install && npm run build:plugin

# 3. run the dev server
npm run dev
# 1. build the compiler
cd kittine-compiler && cargo build --release

# 2. install cargo-leptos
cargo install cargo-leptos

# 3. compile the .kitty sources to Rust
cargo run --quiet -- build ../example-ssr/src/App.kitty

# 4. run the SSR server
cd ../example-ssr && cargo leptos watch

Full walkthroughs for both targets are available in the repo's docs/GETTING_STARTED.md and docs/SSR.md.