bytecodealliance / wrpc

Wasm component-native RPC framework
Other
118 stars 18 forks source link

where to find quickstart guide about running the examples? #286

Closed sammyne closed 2 weeks ago

sammyne commented 3 weeks ago

Really appreciate if there is a guide helping me to build examples and run them~

rvolosatovs commented 2 weeks ago

Thanks for filing an issue, indeed - documentation is currently lacking

Native wRPC applications in Rust are runnable using cargo run from the example directory or via cargo run -p streams-nats-server, for example

Rust component examples need to be built for wasm32 and then can be run via e.g. wrpc-wasmtime-nats provided in this repository

Go examples should be runnable similarly via go run

Most examples will require a running nats-server currently

sammyne commented 2 weeks ago

A quickstart guide has been posted as this PR https://github.com/bytecodealliance/wrpc/pull/294

rvolosatovs commented 2 weeks ago

Done in #294, small update in #300