Deno is a Type Script and JavaScript run time which offer more security and flexibility than Nodejs. It is created in Rust language, by the same Nodejs developer . The frame work has the following features
- Secure by default. No file, network, or environment access, unless explicitly enabled.
- Supports TypeScript out of the box.
- Ships only a single executable file.
- Has built-in utilities like a dependency inspector (
deno info
) and a code formatter (deno fmt
). - Has a set of reviewed (audited) standard modules that are guaranteed to work with Deno:
Install Deno
To install Deno on Window use the one of the method
On power shell issue the command
iwr https://deno.land/x/install/install.ps1 -useb | iex
It will install and setup the path for Deno, after installation try to check version of Deno
deno -v
Not working ? try the alternative options
Chocolatey (Windows):
choco install deno
Scoop (Windows):
scoop install deno