Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hanks10100/wasm-examples
WebAssembly Examples
https://github.com/hanks10100/wasm-examples
c cpp javascript wasm webassembly
Last synced: about 1 month ago
JSON representation
WebAssembly Examples
- Host: GitHub
- URL: https://github.com/hanks10100/wasm-examples
- Owner: Hanks10100
- Created: 2017-02-07T01:41:08.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-06-25T04:24:07.000Z (over 5 years ago)
- Last Synced: 2024-11-10T02:22:12.527Z (about 2 months ago)
- Topics: c, cpp, javascript, wasm, webassembly
- Language: WebAssembly
- Homepage:
- Size: 62.5 KB
- Stars: 227
- Watchers: 10
- Forks: 58
- Open Issues: 4
-
Metadata Files:
- Readme: README.en.md
Awesome Lists containing this project
README
# WebAssembly Examples
## Background
The [MVP](http://webassembly.org/docs/mvp/) (Minimum Viable Product) doesn't support to use `` to require a `.wasm` file yet ([They plan to do this](http://webassembly.org/docs/modules/#integration-with-es6-modules)). The only way to access WebAssembly on the Web is through an explicit [JavaScript API](http://webassembly.org/docs/js/).
> TODO: write more.
## Getting Started
> TODO: write more.
## Examples
Each folder has a README inside. Here is an index:
+ [simple](./simple/): A simple example using asm.js.
+ [cpp](./cpp/): A simple example using C/C++.
+ [multi-wasm](./multi-wasm/): Using multiple wasm files.
+ [js-api](./js-api/): Call javascript API in wasm.
+ [nbody](./nbody/): Performance test (using C).