DEV Community

Manthan Ankolekar
Manthan Ankolekar

Posted on

Deno Install/Upgrade steps

Installation :

Using Shell (macOS and Linux):

curl -fsSL https://deno.land/x/install/install.sh | sh
Enter fullscreen mode Exit fullscreen mode

Using PowerShell (Windows):

irm https://deno.land/install.ps1 | iex
Enter fullscreen mode Exit fullscreen mode

Using Scoop (Windows):

scoop install deno
Enter fullscreen mode Exit fullscreen mode

Using Chocolatey (Windows):

choco install deno
Enter fullscreen mode Exit fullscreen mode

Using Homebrew (macOS):

brew install deno
Enter fullscreen mode Exit fullscreen mode

Using Nix (macOS and Linux):

nix-shell -p deno
Enter fullscreen mode Exit fullscreen mode

Build and install from source using Cargo:

cargo install deno --locked
Enter fullscreen mode Exit fullscreen mode

To check version :

deno --version
Enter fullscreen mode Exit fullscreen mode

To Update :

deno upgrage

#For Specific Version
deno upgrade --version 1.0.1
Enter fullscreen mode Exit fullscreen mode

Reference: Deno Installation Official

Image of Datadog

How to Diagram Your Cloud Architecture

Cloud architecture diagrams provide critical visibility into the resources in your environment and how they’re connected. In our latest eBook, AWS Solution Architects Jason Mimick and James Wenzel walk through best practices on how to build effective and professional diagrams.

Download the Free eBook

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more