Djedou user interface design is a web framework for creating fast and interactive client side web application in Rust webassembly following Elm Architecture.
rustup target add wasm32-unknown-unknown
wasm-pack
and cargo install basic-http-server
cd .\examples\counter\
wasm-pack build --target web --release
basic-http-server -a 127.0.0.1:4000
examples/counter
).
3. Make sure to have following crate in your **Cargo.toml** file
duid = { path = "../../", features = ["default"] }
wasm-bindgen = "0.2"
4. Run this command:
wasm-pack build --target web --release
5. For dev run:
basic-http-server -a 127.0.0.1:4000```