What is Deno?
Deno is a secure runtime environment for JavaScript and TypeScript and the same time it lets create Webassembly applications out of the box.
Built in Security
Deno uses security flats like — allow-net:example.com, — allow-read:example.com every time you run ( compile, build and run ) the application.
Install Deno on Windows 10/8/7
Launch Windows PowerShell and run the following command to install Deno on Windows 10/8/7
iwr https://deno.land/x/install/install.ps1 -useb | iex
Install Deno on Linux and MacOS
Launch terminal and run the following command to install Deno on Linux and Mac
curl -fsSL https://deno.land/x/install/install.sh | sh
Watch me Install and Try sample app with Deno
Top comments (0)