Playground for a WebAssembly frontend router written in Rust, live here.
- Hybrid router combinng
hash
&history
style routing modes, delivering clean URLs without the need to reload page - DOM updated using Rust function pointers & web-sys
- 404 Page if route does not exist
- Supports hooks at different stages of the routing lifecycle (WIP)
#[wasm_bindgen]pub fn main() {
let mut r = router::Router::new();
r.add("/", update_home);
r.add("/about", update_about);
r.add_hook("on_loaded", loaded);
r.init();
}
pub fn update_home(s: &str) { /* DOM Manipulation */}
pub fn update_about(s: &str) { /* DOM Manipulation */}
pub fn loaded() { /* DOM Manipulation */}
wasm-pack build -t web