Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A basic Seed app displaying 'Hello, Seed!' in the browser.
# seed/demo/lib.rs
use seed::{prelude::*, *};
struct Model;
enum Msg {}
fn init(_: Url, _: &mut Orders<Msg>) -> Model {
Model
}
fn update(_msg: Msg, _model: &mut Model, _: &mut Orders<Msg>) {}
fn view(_model: &Model) -> Node<Msg> {
h1! ["Hello, Seed!"]
}
#[wasm_bindgen(start)]
pub fn start() {
App::start("app", init, update, view);
}Seed is a Rust framework for creating front-end web apps with WebAssembly. It provides a component-based architecture inspired by Elm, enabling Rust developers to write type-safe, reactive web applications that compile to Wasm.
Origin & Creator
Seed was created by IcedDev and the Rust community, first appearing around 2018.
Industrial Note
Seed-Rust is ideal for developers who want Rust’s safety and performance for front-end web apps, especially for Wasm-based projects where speed and correctness are critical.