Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/revmischa/serverless-lambda-wasmtime
- Owner: revmischa
- License: mit
- Created: 2020-11-27T22:52:52.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-27T23:17:05.000Z (about 4 years ago)
- Last Synced: 2024-10-18T07:52:39.240Z (3 months ago)
- Language: Shell
- Size: 5.24 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# serverless-lambda-wasmtime
AWS Lambda WasmTime runtime with Serverless# Quickstart
```shell
# install serverless
npm install -g serverless@latestcd 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.