wasmer-deploy-cli 0.1.29

CLI for Wasmer Deploy
Documentation
1
2
3
4
5
6
7
8
9
10
11
async function handler(request) {
  const out = JSON.stringify({
    success: true,
    package: "{{package}}",
  });
  return new Response(out, {
    headers: { "content-type": "application/json" },
  });
}

addEventListener("fetch", handler);