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

https://github.com/dipankardas011/my-wasm-learning

lets learn about wasm
https://github.com/dipankardas011/my-wasm-learning

Last synced: 3 months ago
JSON representation

lets learn about wasm

Awesome Lists containing this project

README

          

# Wasm projects

# First Cli

## references
[Blog link](https://blog.ediri.io/lets-build-a-cli-in-rust)

## wasi-bot (HTTPS)

> for spin check the gpt2-bot

also its deployed on https://chat-bot-wasm.azurewebsites.net/

> Using wasmedge

```bash
curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | sudo bash -s -- -p /usr/local

wget https://github.com/WasmEdge/WasmEdge/releases/download/0.11.1/WasmEdge-plugin-wasmedge_httpsreq-0.11.1-manylinux2014_x86_64.tar.gz\n

tar -xzf WasmEdge-plugin-wasmedge_httpsreq-0.11.1-manylinux2014_x86_64.tar.gz

sudo cp libwasmedgePluginHttpsReq.so /usr/local/lib/wasmedge/

cargo build --target wasm32-wasi --release
```