安裝#
訪問 https://github.com/denocn/deno_install 按照提示安裝。
windows 通過 powershell 安裝後即可使用,但 ubuntu 還需要做額外的工作:
命令行智能提示補全#
windows#
ubuntu#
更新#
設置開發環境#
https://docs.deno.com/runtime/manual/getting_started/setup_your_environment
訪問 https://github.com/denocn/deno_install 按照提示安裝。
windows 通過 powershell 安裝後即可使用,但 ubuntu 還需要做額外的工作:
https://docs.deno.com/runtime/manual/getting_started/setup_your_environment
nano ~/.bashrc
# 將以下兩行添加到末尾
export DENO_INSTALL="/home/xiaoquantang/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
# 應用最新配置(使其生效)
source ~/.bashrc
deno completions bash > "%USERPROFILE%\deno.bash"
source "%USERPROFILE%\deno.bash"
deno completions bash > ~/.deno/deno.bash
source ~/.deno/deno.bash
deno upgrade