afterglow 0.3.0

A rust front-end framework built on typed-html and dodrio. Use trait objects to decouple view/mutation behaviour and data model.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod bus;
pub mod container;
pub mod messenger;
pub mod prelude;
pub mod renderer;

#[cfg(test)]
mod tests {
    use wasm_bindgen_test::*;
    wasm_bindgen_test_configure!(run_in_browser);

    pub fn init_test() {
        let _ = femme::with_level(log::LevelFilter::Info);
    }
}