Advent of code 2021 participation : https://adventofcode.com/
Shell (Mac, Linux):
curl -fsSL https://deno.land/x/install/install.sh | sh
PowerShell (Windows):
iwr https://deno.land/x/install/install.ps1 -useb | iex
Homebrew (Mac):
brew install deno
Chocolatey (Windows):
choco install deno
Scoop (Windows):
scoop install deno
Simply replace day by the day you want
deno run -A <day>/main.ts
At the project root launch:
deno test -A
If you want to launch tests in watch mode, at the project root launch :
deno test -A --watch