June 2025
Intermediate to advanced
837 pages
24h 50m
English
Before you can start using Deno, you need to install the platform on your system. The easiest way to do this is to install Deno on the command line. On Linux and macOS, you can use cURL to do that, as shown in Listing 28.1.
$ curl -fsSL https://deno.land/x/install/install.sh | sh
Listing 28.1 Installing Deno on Linux and macOS
On a Windows system, you can install Deno using the command from Listing 28.2 on the PowerShell.
$ iwr https://deno.land/x/install/install.ps1 -useb | iex
Listing 28.2 Installing Deno on a Windows System
As an alternative to these options, you can also install Deno using package managers such as Homebrew or Chocolatey.
To check whether your installation was successful, you can enter the ...
Read now
Unlock full access