diff options
-rw-r--r-- | website/index.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/website/index.html b/website/index.html index fb47d53e3..0720f639f 100644 --- a/website/index.html +++ b/website/index.html @@ -47,11 +47,15 @@ <h2>Getting started</h2> <p>Install Deno into ~/.deno/bin - +<h2>With Shell</h2> <pre> curl -L https://deno.land/x/install/install.sh | sh export PATH=$HOME/.deno/bin:$PATH </pre> +<h2>With PowerShell</h2> +<pre> +iex (iwr https://deno.land/x/install/install.ps1) +</pre> Try a Deno program. Install by bash alias. This one serves a local directory in HTTP. |