mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-25 06:02:13 +00:00
17 lines
293 B
Markdown
17 lines
293 B
Markdown
|
# Using deno
|
||
|
|
||
|
You can build the example with
|
||
|
|
||
|
```sh
|
||
|
$ ./build.sh
|
||
|
```
|
||
|
|
||
|
and test it with
|
||
|
|
||
|
```sh
|
||
|
$ deno run --allow-read test.ts
|
||
|
```
|
||
|
|
||
|
The `--allow-read` flag is needed because the wasm file is read during runtime.
|
||
|
This will be fixed when https://github.com/denoland/deno/issues/5609 is resolved.
|