$ cargo install worker-build
$ worker-build --releaseTo run the example on http://localhost:8080
$ ./workerd serve config.capnpTo run using bazel
$ bazel run //src/workerd/server:workerd -- serve $(pwd)/samples/hello-wasm/config.capnpTo create a standalone binary that can be run:
$ ./workerd compile config.capnp > hellowasm
$ ./hellowasmTo test:
% curl http://localhost:8080
Hello WASM!