dapr-labs icon indicating copy to clipboard operation
dapr-labs copied to clipboard

Many forms of coffeeshop implemented by C# and Rust run on WebAssembly/WASI (Spin) + Dapr. ⭐️ Star to support our work!

Results 3 dapr-labs issues
Sort by recently updated
recently updated
newest added

devcontainer.json does not build in JetBrains IDE 2024.1 and VSCode. JetBrains IDE Welcome screen -> DevContainers -> New DevContainer (from VCS Project, Docker must be installed.) Insert the git@ link...

From [this presentation](https://docs.google.com/presentation/d/1u2DJMx5GS-ITRHrhZUrq5tLMOpJfl5bjQA0FLdtb_lY), we intend to implement this model on Spin. [Component Model](https://component-model.bytecodealliance.org/introduction.html) & [Introduction to WebAssembly components by Radu Matei](https://radu-matei.com/pdf/intro-wasm-components.pdf) [Component Model Tooling Compatibility - Mar 2023](https://bytecodealliance.org/articles/component-model-tooling-compatibility) - Rust...

Refs: https://www.thorsten-hans.com/how-to-blog-backends-with-spin-and-fermyon-cloud/ ```rust #[http_component] fn handle_blog_apis_rust(req: Request) -> Result { let mut router = spin_sdk::http::Router::default(); router.post("/contact", requests::process_contact_request); router.post("/sponsor", requests::process_sponsor_request); router.post("/subscriptions", newsletter::subscribe); router.get("/search", search::search); router.add("/...", http::Method::OPTIONS, cors::process_preflight); router.handle(req) } ``` ```rust...