Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过状态码退出Deno ?
在你可以使用的 Node.jsprocess.exit()中,它的 Deno 对应物是什么?
process.exit()
从 Deno 版本开始0.3.4:
0.3.4
Deno.exit(1); // the exit code is optional and defaults to 0
查看https://deno.land/typedoc/以了解您可以通过Deno全局访问的所有内容。
Deno