Install Deno
Choose based on your OS:
macOS/Linux (Shell):
curl -fsSL https://deno.land/install.sh | sh
Windows (PowerShell):
irm https://deno.land/install.ps1 | iex
Restart your terminal. Deno installs to ~/.deno/bin (adds to PATH automatically).
Verify Installation
Run Hello World
den o run https://deno.land/std/examples/welcome.ts
Expected output: Welcome to Deno!