deno试水

deno试水

Deno: A secure runtime for JavaScript and TypeScript.

安装

bash
1
2
3
4
5
# curl
curl -fsSL https://deno.land/x/install/install.sh | sh

# brew
brew install deno

开始

bash
1
2
# example
deno run https://deno.land/std/examples/welcome.ts

评论