sauron

Sauron is an html web framework for building web-apps. It is heavily inspired by elm.

Example

```rust use sauron::html::attributes::; use sauron::html::events::; use sauron::html::*; use sauron::Node;

use sauron::Component;

[derive(Debug, Clone)]

pub enum Msg { Click, }

pub struct App { click_count: u32, }

impl App { pub fn new() -> Self { App { click_count: 0 } } }

impl Component for App { fn create() -> App { App::new() }

fn view(&self) -> Node<Msg> {
    div(
        [class("some-class"), id("some-id"), attr("data-id", 1)],
        [
            input(
                [
                    class("client"),
                    r#type("button"),
                    value("Click me!"),
                    onclick(move |_| {
                        sauron::log("Button is clicked");
                        Msg::Click
                    }),
                ],
                [],
            ),
            text(format!("Clicked: {}", self.click_count)),
        ],
    )
}

fn update(&mut self, msg: Msg) {
    sauron::log!("App is updating from msg: {:?}", msg);
    match msg {
        Msg::Click => self.click_count += 1,
    }
}

fn subscribe(&self) {}

} ```

License: MIT