Wasm components linked at runtime (via wRPC) and running in wasmCloud.
Install wash
with brew install wasmcloud/wasmcloud/wash
.
wash --version
# wash v0.38.0
# ├ nats-server v2.10.20
# ├ wadm v0.19.0
# └ wasmcloud v1.4.2
We use docker
to start a local registry, so you will need to have it installed.
-
Start up a running environment.
Starts:
- a local redis server
- a local postgres server
- a local OCI registry
- a single wasmCloud host, with NATS and
wadm
running - the wash UI (http://localhost:3030/)
./local/up.fish
-
Build (and sign) the components, pushing them to the local registry
./build_and_push.fish
-
Deploy the components with
wadm
./start.fish
-
Redeploy the components with
wadm
./restart.fish
-
Delete the application with
wadm
./stop.fish
-
Stop the wasmCloud host
./local/down.fish
-
Test
# data init curl 'localhost:8080/data-init/all' # products curl 'localhost:8080/products' # inventory curl 'localhost:8080/inventory/?skus=ENG-V8-500' # orders curl 'localhost:8080/orders' # create order (fish shell) curl localhost:8080/orders -d ' [ { "sku": "WND-WPR-AW", "price": 1000, "quantity": 1 }, { "sku": "TIR-SET-AS", "price": 20000, "quantity": 3 } ]' # 201 Created
oha 'http://localhost:8080/orders' \
-c 100 \
-n 10000 \
-m POST \
-H 'Content-Type: application/json' \
-d '
[
{
"sku": "WND-WPR-AW",
"price": 1000,
"quantity": 1
},
{
"sku": "TIR-SET-AS",
"price": 20000,
"quantity": 3
}
]'