/openwhisk-runtime-deno-archived

OpenWhisk Runtime Deno supports OpenWhisk functions written in TypeScript for Deno

Primary LanguageShell

OpenWhisk Runtime for Deno

Try it out using docker image:

wsk action create hello-deno main.ts --docker=satyarohith/openwhisk-runtime-deno

The content of the main.ts is as bellow.

export default function main(args: {[key: string]: any}) {
  return {
    message: `Hello, ${args.name || 'World'}!`
  };
}