Installation
Linux/Unix/OS X :
curl -fsSL https://deno.land/x/install/install.sh | sh
Windows Powershell :
iwr https://deno.land/x/install/install.ps1 -useb | iex
Other ways :
#Using Brew(MAC OS)
brew install deno
#Using Chocolatey (Windows)
choco install deno
Running First Deno program
deno run https://deno.land/std/examples/welcome.ts
Hello World with colored text on console
create a file name it helloworld.js
import clc from "https://deno.land/x/color/index.ts"
console.log(clc.red.text("Hello World"))
console.log(clc.blue.text("Hello World"))
Run the following commands to run your first Deno program
deno run helloworld.js