Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webassembly/wasi-cloud-core
https://github.com/webassembly/wasi-cloud-core
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/webassembly/wasi-cloud-core
- Owner: WebAssembly
- Created: 2023-05-05T14:54:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-21T02:18:23.000Z (9 months ago)
- Last Synced: 2024-05-09T12:50:18.336Z (6 months ago)
- Language: Rust
- Size: 260 KB
- Stars: 44
- Watchers: 19
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `wasi-cloud-core`
A proposed [WebAssembly System Interface](https://github.com/WebAssembly/WASI) API.
### Current Phase
`wasi-cloud-core` is currently in [Phase 1](https://github.com/WebAssembly/WASI/blob/main/Proposals.md#phase-1---feature-proposal-cg).
### Champions
- [Dan Chiarlone](https://github.com/danbugs)
- [David Justice](https://github.com/devigned)
- [Jiaxiao Zhou](https://github.com/Mossaka)
- [Taylor Thomas](https://github.com/thomastaylor312)### Phase 4 Advancement Criteria
`wasi-cloud-core` should have at least two implementations (i.e., from service providers, and or cloud providers), and, at the very minimum, pass the testsuite for Windows, Linux, and MacOS.
## Table of Contents [if the explainer is longer than one printed page]
- [Introduction](#introduction)
- [Out-of-Scope Capabilities (for now)](#out-of-scope-capabilities-for-now)### Introduction
> Note: This proposal currently only contains the proposed WIT interfaces; more work is necessary to fully document the proposal.
`wasi-cloud-core` World aims to provide a generic way for WASI applications to interact with services. This world is created by including many other WASI worlds being proposed in the WASI community. The following is a list of the worlds that are currently being included in `wasi-cloud-core`.
- [wasi-keyvalue](https://github.com/WebAssembly/wasi-keyvalue)
- [wasi-messaging](https://github.com/WebAssembly/wasi-messaging)
- [wasi-http](https://github.com/WebAssembly/wasi-http)
- [wasi-runtime-config](https://github.com/WebAssembly/wasi-runtime-config)
- [wasi-blob-store](https://github.com/WebAssembly/wasi-blob-store)This list of services provide a set of capabilities that are common to many applications. Examples: handling an HTTP request, responding to a pub/sub message, storing a key/value pair, etc. It targets a wide range of applications, from long-running services to "bursty workloads" like Edge functions, serverless functions or Cloud events.
This set of capabilities are derived from the best practices of building distributed applications. It is not intended to be a complete set of capabilities, but rather are needed by 80% of applications.
### Out-of-Scope Capabilities (for now)
- [wasi-sql](https://github.com/WebAssembly/wasi-sql): the scope of the `wasi:sql` is not clear yet, and it is decided to be dropped from the wasi-cloud-core proposal.
- [wasi-distributed-lock-service](https://github.com/WebAssembly/wasi-distributed-lock-service): the distributed lock service is a very specific service that is not needed by 80% of applications. It is decided to be dropped from the wasi-cloud-core proposal.