wasm-workers-server
wasm-workers-server copied to clipboard
🚀 Develop and run serverless applications on WebAssembly

### Is your feature request related to a problem? Please describe. The project has a number of examples, all of them can be found at https://github.com/vmware-labs/wasm-workers-server/tree/main/examples. We also keep extensive...
### Discussed in https://github.com/vmware-labs/wasm-workers-server/discussions/268 Originally posted by **dlozina** March 29, 2024 Hi all, First of all thank you for this project. I am really glad that we can build workers...
**Summary** This PR reworks the Zig SDK to provide more control to the user w.r.t. dynamic allocation (fixes #218) and also provides facilities to write the worker config directly from...
Fixes #253. Adds a `--log-level` option to configure the `actix_web` logs that can be one of the valid [log::LevelFilter](https://docs.rs/log/latest/log/enum.LevelFilter.html) options (off, error, warn, info, debug, trace). It will default to...
### Describe the bug At this time, the Zig SDK contains some [hardcoded](https://github.com/vmware-labs/wasm-workers-server/blob/be1785497cb61e3f26365cbfc47d691d7186fa16/kits/zig/worker/src/worker.zig#L100) [values](https://github.com/vmware-labs/wasm-workers-server/blob/be1785497cb61e3f26365cbfc47d691d7186fa16/kits/zig/worker/src/worker.zig#L137) when preparing the response object for Wasm Workers Server. We should be able to return arbitrarily...
### Is your feature request related to a problem? Please describe. The fetch feature allows you to retrieve data from an external service. However, you cannot query other worker in...
Add Python runtime with wws http support. Fixes: https://github.com/vmware-labs/wasm-workers-server/issues/176 TODO: - [ ] Forward ARGV to the Python runtime - [ ] Serve it as part of the [wws provided...
### Is your feature request related to a problem? Please describe. We want Wasm Workers Server not to rely on OpenSSL for several reasons (See #137). From the `rustls /...
### Is your feature request related to a problem? Please describe. Currently, the project relies on OpenSSL to perform `https` requests to pull the different runtimes. We are using the...