本家: [[https://deno.land|Deno - A modern runtime for JavaScript and TypeScript]]\\
[[https://deno-ja.vercel.app|Deno - JavaScriptとTypeScriptのための安全なランタイム]] (日本語訳)\\
ソースコード: [[git>denoland/deno|denoland/deno: A modern runtime for JavaScript and TypeScript.]]\\
<WRAP color_term>
<WRAP color_command><html><pre>
$ curl -fsSL https://deno.land/install.sh | sh
</pre></html></WRAP>
<WRAP color_result><html><pre>
######################################################################## 100.0%
Archive: /home/tomoyan/.deno/bin/deno.zip
inflating: /home/tomoyan/.deno/bin/deno
Deno was installed successfully to /home/tomoyan/.deno/bin/deno
Manually add the directory to your $HOME/.bashrc (or similar)
export DENO_INSTALL="/home/tomoyan/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
Run '/home/tomoyan/.deno/bin/deno --help' to get started
</pre></html></WRAP>
</WRAP>
<WRAP color_term>
<WRAP color_command><html><pre>
$ cat << 'EOF' >> $HOME/.bashrc
export DENO_INSTALL="/home/tomoyan/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
EOF