-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (97 loc) · 2.56 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>intro-to-wasm-in-rust</title>
<base href="/" />
</head>
<body>
<style>
li {
margin-bottom: 0.4em;
}
</style>
<h1>Introduction to WebAssembly in Rust</h1>
<p>Presented by David Cristofaro at Rust Melbourne meetup 14/08/2019.</p>
<p>
Source code available at
<a
href="https://github.com/dtcristo/intro-to-wasm-in-rust"
target="_blank"
>github.com/dtcristo/intro-to-wasm-in-rust</a
>.
</p>
<h2>Examples</h2>
<ul>
<li><a href="1-add">1-add</a></li>
<li><a href="2-add-and-log">2-add-and-log</a></li>
<li><a href="3-add-rust">3-add-rust</a></li>
<li><a href="4-hello-world">4-hello-world</a></li>
<li><a href="5-memory">5-memory</a></li>
<li><a href="6-dom">6-dom</a></li>
<li>
<a href="https://mandelbrot-rust.web.app/" target="_blank"
>mandelbrot</a
>
- source code
<a href="https://github.com/dtcristo/mandelbrot" target="_blank"
>github.com/dtcristo/mandelbrot</a
>
</li>
</ul>
<h2>Further reading</h2>
<ul>
<li>
<a
href="https://rustwasm.github.io/docs/book/introduction.html"
target="_blank"
>The Rust and WebAssembly Book</a
>
</li>
<li>
<a
href="https://rustwasm.github.io/docs/wasm-bindgen/introduction.html"
target="_blank"
>wasm-bindgen guide</a
>
</li>
<li>
<a
href="https://github.com/rustwasm/awesome-rust-and-webassembly"
target="_blank"
>Awesome Rust and WebAssembly</a
>
</li>
<li>
<a href="https://docs.rs/js-sys/" target="_blank">js-sys docs</a>
</li>
<li>
<a href="https://docs.rs/web-sys/" target="_blank">web-sys docs</a>
</li>
<li>
Mozilla Hacks -
<a
href="https://hacks.mozilla.org/2018/10/webassemblys-post-mvp-future/"
target="_blank"
>WebAssembly’s post-MVP future</a
>
</li>
<li>
Mozilla Hacks -
<a
href="https://hacks.mozilla.org/2019/03/standardizing-wasi-a-webassembly-system-interface/"
target="_blank"
>Standardizing WASI</a
>
</li>
<li>
Mozilla Hacks -
<a
href="https://hacks.mozilla.org/category/webassembly/"
target="_blank"
>WebAssembly Articles</a
>
</li>
</ul>
</body>
</html>