summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Sharshakov <sh7dm@outlook.com>2019-01-26 18:26:54 +0300
committerRyan Dahl <ry@tinyclouds.org>2019-01-26 10:26:54 -0500
commit50613c2df5bc1d4bfd2c5ceb5a7104765e6da772 (patch)
tree0e7815f5c0604ee8c478655a366ab20a72f373ea
parentec4858bcbd77c9936c324fe9860fc653c2030684 (diff)
Add PowerShell install guide to the website (#1590)
-rw-r--r--website/index.html6
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.