From a4db8a45c1ffcae1373cf5e250c17fd9ee5a1b4a Mon Sep 17 00:00:00 2001 From: BSKY Date: Tue, 29 Oct 2019 00:27:38 +0900 Subject: [PATCH] Add asdf-deno to install instructions list (#81) --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index d8112d9..5f3d725 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,22 @@ scoop install deno brew install deno ``` +## Install and Manage Multiple Versions + +**With [asdf](https://asdf-vm.com) and [asdf-deno](https://github.com/asdf-community/asdf-deno):** + +```sh +asdf plugin-add deno https://github.com/asdf-community/asdf-deno.git + +asdf install deno 0.2.10 + +# Activate globally with: +asdf global deno 0.2.10 + +# Activate locally in the current folder with: +asdf local deno 0.2.10 +``` + ## Environment Variables - `DENO_INSTALL` - The directory in which to install Deno. This defaults to `$HOME/.deno`.