Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flozz/webassembly-examples
Example WebAssembly programs
https://github.com/flozz/webassembly-examples
wasm webassembly
Last synced: about 1 month ago
JSON representation
Example WebAssembly programs
- Host: GitHub
- URL: https://github.com/flozz/webassembly-examples
- Owner: flozz
- License: wtfpl
- Created: 2023-01-11T12:16:17.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-25T16:34:07.000Z (over 1 year ago)
- Last Synced: 2024-04-13T19:29:32.531Z (7 months ago)
- Topics: wasm, webassembly
- Language: HTML
- Homepage: https://blog.flozz.fr/2023/01/21/petite-introduction-a-webassembly/
- Size: 1.06 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebAssembly Examples
This repository contains WebAssembly examples for an article I published on my blog (French):
* https://blog.flozz.fr/2023/01/21/petite-introduction-a-webassembly/
## Examples
| Name | Description | Online Demo |
|-----------------------------------------------------------------|----------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
| [01 - Hello World](./01%20-%20Hello%20World/) | A simple "hello world" WebAssembly program | [Demo](https://flozz.github.io/webassembly-examples/01%20-%20Hello%20World/build/hello.html) |
| [02 - Function Call](./02%20-%20Function%20Call/) | How to call WebAssembly functions from JavaScript | [Demo](https://flozz.github.io/webassembly-examples/02%20-%20Function%20Call/index.html) |
| [03 - Pointers and Arrays](./03%20-%20Pointers%20and%20Arrays/) | how to use pointers and how to pass arrays to a WebAssembly function | [Demo](https://flozz.github.io/webassembly-examples/03%20-%20Pointers%20and%20Arrays/index.html) |## Benchmarks
| Name | Description | Online Version |
|---------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
| [bench 01 - Hue shift](./bench%2001%20-%20Hue%20shift/) | Mesure the speed difference between a pure JavaScript and a WebAssembly versions of a hue shift on a canvas | [Online](https://flozz.github.io/webassembly-examples/bench%2001%20-%20Hue%20shift/index.html) |
| [bench 02 - Hue shift - Shared buffer](./bench%2002%20-%20Hue%20shift%20-%20Shared%20buffer/) | Mesure the impact on the speed of the memory allocation calls | [Online](https://flozz.github.io/webassembly-examples/bench%2002%20-%20Hue%20shift%20-%20Shared%20buffer/index.html) |
| [bench 03 - Hue shift - Image size](./bench%2003%20-%20Hue%20shift%20-%20Image%20size/) | Mesure the impact on the speed gain of the quantity of data passed to WASM | [Online](https://flozz.github.io/webassembly-examples/bench%2003%20-%20Hue%20shift%20-%20Image%20size/index.html) |
| [bench 04 - Hue shift - Signle Function](./bench%2004%20-%20Hue%20shift%20-%20Single%20Function/) | Same as the first benchmark, but implemented as a single function | [Online](https://flozz.github.io/webassembly-examples/bench%2004%20-%20Hue%20shift%20-%20Single%20Function/index.html) |## License
The examples in this repository are licensed under WTFPL unless otherwise stated:
```
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004Copyright (C) 2004 Sam Hocevar
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION0. You just DO WHAT THE FUCK YOU WANT TO.
```