Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/revmischa/serverless-lambda-wasmtime

AWS Lambda WasmTime runtime with Serverless
https://github.com/revmischa/serverless-lambda-wasmtime

Last synced: 4 days ago
JSON representation

AWS Lambda WasmTime runtime with Serverless

Awesome Lists containing this project

README

        

# serverless-lambda-wasmtime
AWS Lambda WasmTime runtime with Serverless

# Quickstart
```shell
# install serverless
npm install -g serverless@latest

cd demo-rust

# install serverless plugins
npm install

# deploy app
sls deploy

```

# What does this do?
Demo of using serverless to run WebAssembly binaries with [wasmtime](https://wasmtime.dev/). This example uses rust but you can use any language that compiles to WASM with [WASI](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-intro.md) bindings.

I think it's neat that you can have a portable executable that can easily be run on AWS.