3 releases

0.1.2 Jan 7, 2023
0.1.1 Apr 30, 2021
0.1.0 Apr 29, 2021

#10 in #dependency

Download history 3/week @ 2024-02-15 17/week @ 2024-02-22 9/week @ 2024-02-29 17/week @ 2024-03-07 77/week @ 2024-03-14

109 downloads per month
Used in 2 crates (via silkenweb-dom)

MIT/Apache

21KB
384 lines

This Crate is Deprecated

This is an old implementation crate for Silkenweb that is no longer used.

tests crates.io Documentation MIT/Apache-2 licensed

A library for building reactive single page web apps.

Features

  • Fine grained reactivity using signals to minimize DOM API calls
  • No VDOM. Calls to the DOM API and your rendering code are minimized using signals.
  • Uses plain Rust syntax rather than a macro DSL
  • Downcasts Js objects for you where the type is known at compile time. For example:
    • input().dom_element() returns a web_sys::HtmlInputElement
    • button().on_click(...) passes your event handler a web_sys::HtmlInputElement and a web_sys::MouseEvent.

Example: A Simple Counter

use silkenweb::{
    elements::{button, div, p},
    mount,
    signal::Signal,
};

fn main() {
    let count = Signal::new(0);
    let set_count = count.write();
    let inc = move |_, _| set_count.replace(|&i| i + 1);
    let count_text = count.read().map(|i| format!("{}", i));

    let app = div()
        .child(button().on_click(inc).text("+"))
        .child(p().text(count_text));

    mount("app", app);
}

Quick Start

rustup target add wasm32-unknown-unknown
cargo install trunk wasm-pack
cargo install wasm-bindgen-cli --version 0.2.73
cd examples/counter
trunk serve --open

Learning

Dependencies

~155KB