Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A basic wasmCloud actor written in Rust that responds with 'Hello, wasmCloud!' when invoked.
# wasmcloud/demo/src/lib.rs
use wasmcloud_actor_core::prelude::*;
use wasmcloud_actor_http_server::prelude::*;
#[actor::init]
pub fn init() {}
#[actor::handler]
pub fn handle(req: Request) -> HandlerResult<Response> {
Ok(Response::ok().body("Hello, wasmCloud!"))
}WasmCloud is a distributed, actor-based framework for building cloud-native applications using WebAssembly (Wasm), enabling secure, portable, and scalable microservices across heterogeneous environments.
Origin & Creator
WasmCloud was created by WasmCloud Inc. (originally Cosmonic) in 2019 to enable cloud-native applications with WebAssembly actors.
Industrial Note
WasmCloud targets developers building microservices that require cross-platform portability, security isolation, and high scalability without vendor lock-in.