-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for ECMAScript modules in the JavaScript kit
- Loading branch information
1 parent
2b72b05
commit a95db74
Showing
11 changed files
with
1,230 additions
and
200 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# JavaScript modules example | ||
|
||
Run a JavaScript that exports the application in Wasm Workers Server. | ||
|
||
## Prerequisites | ||
|
||
* Wasm Workers Server (wws): | ||
|
||
```shell-session | ||
curl -fsSL https://workers.wasmlabs.dev/install | bash | ||
``` | ||
|
||
## Run | ||
|
||
```shell-session | ||
wws https://github.com/vmware-labs/wasm-workers-server.git -i --git-folder "examples/js-modules" | ||
``` | ||
|
||
## Resources | ||
|
||
* [JavaScript documentation](https://workers.wasmlabs.dev/docs/languages/javascript) |
Oops, something went wrong.