Files
tldr/pages.zh/common/deno.md

24 lines
534 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# deno
> 一个用于 JavaScript 和 TypeScript 的安全运行时。
> 更多信息:<https://deno.land>。
- 运行一个 JavaScript 或 TypeScript 文件:
`deno run {{path/to/file.ts}}`
- 启动一个 REPL交互式命令行
`deno`
- 运行一个启用网络访问的文件:
`deno run --allow-net {{path/to/file.ts}}`
- 从 URL 运行一个文件:
`deno run {{https://deno.land/std/examples/welcome.ts}}`
- 从 URL 安装一个可执行脚本:
`deno install {{https://deno.land/std/examples/colors.ts}}`