Skip to content

djedou/duid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Duid

Djedou user interface design is a web framework for creating fast and interactive client side web application in Rust webassembly following Elm Architecture.

Testing

Step 0:

  1. Add the WebAssembly target
    rustup target add wasm32-unknown-unknown
  2. Install wasm-pack and cargo install basic-http-server

Run provided Test

cd .\examples\counter\
wasm-pack build --target web --release
basic-http-server -a 127.0.0.1:4000

Run your own test

  1. Move to your project root (here it is examples/counter).
  2. Make sure to have an index.html file in your root project that has a content like this:
<!doctype html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" name="viewport" />
    <title>duid</title>
</head>

<body>
    <div id="app"></div>
    <script type="module">
        import init, { duid } from './pkg/index.js';
        (async () => {
            await init();
            await duid(document.querySelector('#app'));
        })();
    </script>
</body>

</html>
  1. Make sure to have following crate in your Cargo.toml file
duid = { path = "../../", features = ["default"] }
wasm-bindgen = "0.2"
  1. Run this command: wasm-pack build --target web --release
  2. For dev run: basic-http-server -a 127.0.0.1:4000

About

Djedou UI Design in Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages