-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
378 lines (356 loc) · 13.8 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>WasmEdge</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="img/wasmedge-runtime-horizontal-color.png">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/font.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/index.css">
<meta name="theme-color" content="#fafafa">
<script src="js/pre.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q77VSJHYQB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Q77VSJHYQB');
</script>
</head>
<body>
<nav class="fixed z-9">
<div class="dimmed flex justify-between items-center">
<a href="https://wasmedge.org">
<figure class="nav-logo">
<img src="img/wasmedge-horizontal-white.svg" alt="WasmEdge Logo" />
</figure>
</a>
<div class="nav-menu">
<a href="https://wasmedge.org/book/en/" class="nav-menu-item">Docs</a>
<a href="#community" class="nav-menu-item">Community</a>
<a href="https://github.com/WasmEdge/WasmEdge" class="nav-menu-item">GitHub</a>
</div>
</div>
</nav>
<div class="hero full relative z-2">
<figure class="cloud absolute flex justify-center">
<img src="img/cloud.svg" />
</figure>
<div class="dimmed glimpse relative">
<h1>WasmEdge</h1>
<div class="slogan">An open source cloud native WebAssembly Runtime for edge computing.</div>
<div class="hero-btns flex">
<a href="https://wasmedge.org/book/en/" class="btn">Get Started</a>
<a href="https://github.com/WasmEdge/WasmEdge" class="btn wire-btn">Github</a>
</div>
</div>
<div class="dimmed dimmer brief flex justify-between relative">
<div class="wasm-snippet flex relative m:items-center">
<div class="wasm-snippet-trail">
<pre><code>(module
(type (;0;) (func (param i32) (result i32)))
(func $fib (type 0) (param $n i32) (result i32)
local.get $n
i32.const 2
i32.lt_s
if ;; label = @1
i32.const 1
return
end
local.get $n
i32.const 2
i32.sub
call $fib
local.get $n
i32.const 1
i32.sub
call $fib
i32.add
return)
(export "fib" (func $fib)))</code></pre>
</div>
<figure class="snippet-trail-line absolute">
<img src="img/trail-line.svg" />
</figure>
</div>
<div class="explain-icon flex flex-col items-end">
<figure class="wasmedge-in-cloud">
<img src="img/wasmedge-in-cloud.svg" />
</figure>
<div class="explain-text ">
<p>The WebAssembly program can be compiled from multi-language and embeded in many edge devices with small footprint, high performance, memory safety, sandbox securty.</p>
<p>WasmEdge is responsible for ensuring its performance and securty and providing many exclusive extensions and APIs.</p>
</div>
</div>
</div>
</div>
<div class="features full flex">
<div class="features-catalog-bg m:hide p:hide">
<div class="features-catalog sticky flex justify-center items-center">
<ul>
<li class="active"><a href="#feature-aot">High-performance(based on LLVM AOT)</a></li>
<li><a href="#feature-extension">WASI-like Extensions</a></li>
<li><a href="#feature-javascript">JavaScript Support</a></li>
<li><a href="#feature-management">Cloud Native Management and Orchestration</a></li>
<li><a href="#feature-platform">Cross-platform Support</a></li>
<li><a href="#feature-extensible"></a>Easy Extensibility</li>
<li><a href="#feature-embed">Easy to Embed into a Host Application</a></li>
</ul>
</div>
</div>
<div class="features-content m:hide p:hide">
<div id="feature-aot" class="feature-detail flex justify-center items-center">
<div>
<p>Wasm is faster 100 times than Linux container at cold start-up time.</p>
<p>WasmEdge could be faster 10%-20% than native code.</p>
</div>
</div>
<div id="feature-extension" class="feature-detail flex justify-center items-center">
<ul>
<li>Network sockets</li>
<li>Async polling</li>
<li>Tensorflow inference</li>
<li>Key value storage</li>
<li>Database connector</li>
<li>Gas meters for resource constraints</li>
</ul>
</div>
<div id="feature-javascript" class="feature-detail flex justify-center items-center">
<ul>
<li>ES6 module and std API support</li>
<li>Implement JS APIs in Rust</li>
<li>Import C native shared library functions as JS function</li>
</ul>
</div>
<div id="feature-management" class="feature-detail flex justify-center items-center">
<ul>
<li>CRI-O and Kubernetes compatibility</li>
<li>Sidecar apps in Kubernetes-based service meshes</li>
<li>Dapr microservices</li>
</ul>
</div>
<div id="feature-platform" class="feature-detail flex justify-center items-center">
<ul>
<li>Linux OSes dated back to 2010 for both x86 and ARM CPUs</li>
<li>Mac OS X for both x86 and m1 CPUs</li>
<li>Windows</li>
<li>Microkernel and RTOS</li>
</ul>
</div>
<div id="feature-extensible" class="feature-detail flex justify-center items-center">
<p>Build customized runtimes with native functions in C or GO</p>
</div>
<div id="feature-embed" class="feature-detail flex justify-center items-center">
<ul>
<li>Embed WasmEdge functions in C, Go, Rust, Node.js and Python host applications</li>
<li>Embedded function runtime for service mesh proxies (e.g., proxy-wasm for Envoy and MOSN proxies)</li>
</ul>
</div>
</div>
<div class="m-features-gallery hide m:show p:show dimmed m:flex p:flex m:flex-wrap p:flex-wrap m:justify-center p:justify-around">
<div class="m-feature-frame">
<div class="m-feature-title">High-performance(based on LLVM AOT)</div>
<div class="m-feature-detail">
<p>Wasm is faster 100 times than Linux container at cold start-up time.</p>
<p>WasmEdge could be faster 10%-20% than native code.</p>
</div>
</div>
<div class="m-feature-frame">
<div class="m-feature-title">WASI-like Extensions</div>
<div class="m-feature-detail">
<ul>
<li>Network sockets</li>
<li>Async polling</li>
<li>Tensorflow inference</li>
<li>Key value storage</li>
<li>Database connector</li>
<li>Gas meters for resource constraints</li>
</ul>
</div>
</div>
<div class="m-feature-frame">
<div class="m-feature-title">JavaScript Support</div>
<div class="m-feature-detail">
<ul>
<li>ES6 module and std API support</li>
<li>Implement JS APIs in Rust</li>
<li>Import C native shared library functions as JS function</li>
</ul>
</div>
</div>
<div class="m-feature-frame">
<div class="m-feature-title">Cloud Native Management and Orchestration</div>
<div class="m-feature-detail">
<ul>
<li>CRI-O and Kubernetes compatibility</li>
<li>Sidecar apps in Kubernetes-based service meshes</li>
<li>Dapr microservices</li>
</ul>
</div>
</div>
<div class="m-feature-frame">
<div class="m-feature-title">Cross-platform Support</div>
<div class="m-feature-detail">
<ul>
<li>Linux OSes dated back to 2010 for both x86 and ARM CPUs</li>
<li>Mac OS X for both x86 and m1 CPUs</li>
<li>Windows</li>
<li>Microkernel and RTOS</li>
</ul>
</div>
</div>
<div class="m-feature-frame">
<div class="m-feature-title">Easy Extensibility</div>
<div class="m-feature-detail">
<p>Build customized runtimes with native functions in C or GO</p>
</div>
</div>
<div class="m-feature-frame">
<div class="m-feature-title">Easy to Embed into a Host Application</div>
<div class="m-feature-detail">
<ul>
<li>Embed WasmEdge functions in C, Go, Rust, Node.js and Python host applications</li>
<li>Embedded function runtime for service mesh proxies (e.g., proxy-wasm for Envoy and MOSN proxies)</li>
</ul>
</div>
</div>
</div>
</div>
<div class="partners full">
<div class="dimmed">
<div class="partner-text">WasmEdge provides a lightweight, fast, safe and portable alternative to Linux containers in cloud native and edge native environments. </div>
<div class="parterns-gallery flex justify-between items-center m:flex-wrap m:justify-around">
<figure>
<img src="img/partner/[email protected]" alt="OpenYurt" />
</figure>
<figure>
<img src="img/partner/[email protected]" alt="KubeEdge" />
</figure>
<figure>
<img src="img/partner/[email protected]" alt="SuperEdge" />
</figure>
<figure>
<img src="img/partner/[email protected]" alt="MOSN" />
</figure>
</div>
<div class="parterns-gallery flex justify-between items-center m:flex-wrap m:justify-around">
<figure>
<img src="img/partner/[email protected]" alt="Suborbital" />
</figure>
<figure>
<img src="img/partner/[email protected]" alt="cri-o" />
</figure>
<figure>
<img src="img/partner/[email protected]" alt="Kubernetes" />
</figure>
<figure>
<img src="img/partner/[email protected]" alt="Dapr" />
</figure>
</div>
<div class="parterns-gallery flex justify-around items-center m:flex-wrap m:justify-around">
<figure>
<img src="img/partner/[email protected]" alt="Containerd" />
</figure>
<figure>
<img src="img/partner/[email protected]" alt="Fedora" />
</figure>
</div>
</div>
</div>
<div class="fulfill full">
<div class="dimmed">
<h2>Let’s get started</h2>
<div class="fulfill-content">
<p>You can install WasmEdge with only <a href="https://wasmedge.org/book/en/start/install.html">one single command</a> :</p>
<div class="wasmedge-install-command">
<code>wget -qO- https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash</code>
</div>
<p>Want to explore more with WasmEdge, Go to the <a href="https://wasmedge.org/book/en/">WasmEdge Book</a> .</p>
<p>Or embed WasmEdge into the language of your choice and run WebAssembly everywhere :</p>
<div class="wasmedge-sdk-lang flex">
<a href="https://wasmedge.org/book/en/embed/c.html">C/C<span>++</span></a>
<a href="https://wasmedge.org/book/en/embed/rust.html">Rust</a>
<a href="https://wasmedge.org/book/en/embed/go.html">Go</a>
<a href="https://wasmedge.org/book/en/embed/node.html">Javascript</a>
</div>
</div>
</div>
</div>
<div class="news full">
<div class="dimmed">
<h2>News & Events</h2>
<dl class="news-layout flex justify-between m:flex-col">
<div class="news-article">
<dd class="article-date">Dec 9, 2021</dd>
<dt class="article-title">🎅 Ho Ho Ho, WasmEdge 0.9.0 is here!</dt>
<dd class="article-summary">This release of WasmEdge is focused on performance, stability, and interoperability with cloud native infrastructure. </dd>
<dd class="article-link"><a href="https://www.secondstate.io/articles/wasmedge-0.9.0-release/">Learn more</a></dd>
</div>
<div class="news-article">
<dd class="article-date">Dec 20, 2021</dd>
<dt class="article-title">Suborbital ❤️ WasmEdge</dt>
<dd class="article-summary">The WasmEdge team is happy to announce that WasmEdge Runtime is now fully supported in Suborbital's Reactr function scheduler as an embedded WebAssembly engine!</dd>
<dd class="article-link"><a href="https://blog.suborbital.dev/suborbital-wasmedge">Learn more</a></dd>
</div>
<div class="news-article">
<dd class="article-date">Oct 9, 2021</dd>
<dt class="article-title">A lightweight, safe, portable, and high-performance runtime for Dapr</dt>
<dd class="article-summary">Using WasmEdge as a sidecar application runtime for Dapr.</dd>
<dd class="article-link"><a href="https://www.secondstate.io/articles/dapr-wasmedge-webassembly/">Learn more</a></dd>
</div>
</dl>
</div>
</div>
<div class="cncf full flex flex-col justify-center items-center">
<div class="cncf-announce">WasmEdge is a Cloud Native Computing Foundation Sandbox project.</div>
<figure>
<img src="img/[email protected]" alt="CNCF" />
</figure>
</div>
<div class="footer full">
<div class="dimmed flex justify-between m:flex-col">
<div class="footer-left">
<a href="https://wasmedge.org">
<figure class="footer-logo relative">
<img src="img/wasm-edge-runtime-horizontal-color.svg" alt="WasmEdge Logo" />
</figure>
</a>
</div>
<div class="footer-right">
<dl class="flex">
<div class="footer-entries">
<dt>Resources</dt>
<dd><a href="https://github.com/WasmEdge/WasmEdge">Github</a></dd>
<dd><a href="https://wasmedge.org/book/en/">WasmEdge Book</a></dd>
</div>
<div class="footer-entries">
<dt id="community">Community</dt>
<dd><a href="https://wasmedge.org/book/en/extend.html">Contribute</a></dd>
<dd><a href="ttps://groups.google.com/g/wasmedge/">Mailing List</a></dd>
<dd><a href="https://twitter.com/realwasmedge">Twitter</a></dd>
<dd><a href="https://slack.cncf.io/">Slack #WasmEdge</a></dd>
<dd><a href="https://docs.google.com/document/d/1iFlVl7R97Lze4RDykzElJGDjjWYDlkI8Rhf8g4dQ5Rk/edit?usp=sharing">Community Meeting</a></dd>
</div>
</dl>
</div>
</div>
</div>
<div class="copyright full">
<div class="dimmed flex flex-col justify-center items-end m:items-start">
<p>The Linux Foundation has registered trademarks and uses trademarks.</p>
<p>For a list of trademarks of The Linux Foundation, please see our Trademark Usage page.</p>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>