From 1027451fe5cb8123ee0c565702013646bfba5883 Mon Sep 17 00:00:00 2001 From: Snowflake <149651684+snf1k@users.noreply.github.com> Date: Sun, 12 Nov 2023 15:07:12 +0800 Subject: [PATCH] deno: add Chinese translation (#11441) --- pages.zh/common/deno.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages.zh/common/deno.md diff --git a/pages.zh/common/deno.md b/pages.zh/common/deno.md new file mode 100644 index 000000000..5ea45eac5 --- /dev/null +++ b/pages.zh/common/deno.md @@ -0,0 +1,24 @@ +# deno + +> 一个安全的 JavaScript 和 TypeScript 运行时。 +> 更多信息:. + +- 运行 JavaScript 或 TypeScript 文件: + +`deno run {{路径/到/文件.ts}}` + +- 启动 REPL(交互式 shell): + +`deno` + +- 运行文件并启用网络访问: + +`deno run --allow-net {{路径/到/文件.ts}}` + +- 从 URL 运行文件: + +`deno run {{https://deno.land/std/examples/welcome.ts}}` + +- 从 URL 安装可执行脚本: + +`deno install {{https://deno.land/std/examples/colors.ts}}`