rustolio 0.1.0

A minimalistic frontend framework written in Rust to target WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html lang="en-US">
  <head>
    <meta charset="utf-8" />
    <title>CRATE_NAME</title>
    <link rel="stylesheet" href="/./pkg/tailwind.css" />
  </head>
  <body>
    <script type="module">
      import run from "/./pkg/CRATE_NAME.js"
      run()
    </script>
  </body>
</html>