Deno has its own API: https://docs.deno.com/api/deno/subprocess
Currently the bot is using Node.js API:
|
import process from "node:process"; |
In #74 I moved Deno example out of Node.js folder, but it is using Node.js packages and Node.js APIs for everything thanks to some Node.js compatibility Deno 2 introduced. This issue is part of migrating Deno example away from this Node.js compatibility.
See also #76
Deno has its own API: https://docs.deno.com/api/deno/subprocess
Currently the bot is using Node.js API:
echo/deno/index.js
Line 5 in f0a8629
In #74 I moved Deno example out of Node.js folder, but it is using Node.js packages and Node.js APIs for everything thanks to some Node.js compatibility Deno 2 introduced. This issue is part of migrating Deno example away from this Node.js compatibility.
See also #76