Here are the Methods and Steps to install and Configure Deno on Ubuntu.

Deno is a modern runtime for JavaScript and TypeScript.Recently i started using Deno for My Projects because of Typescript no Need to install Modules like npm Everything just acts like web Browsers and loads modules by Deno Repo URLs.

install Deno on Ubuntu

  • Update your Packages
sudo apt update -y && apt upgrade -y
  • Next Install required packages for Deno
sudo apt install unzip -y
  • Now it's time to install Deno on Ubuntu
curl -fsSL https://deno.land/x/install/install.sh | sh
  • Move deno to bin directory
mv /root/.deno/bin/deno /usr/bin/
  • Verfiy deno installation
deno --version
  • Upgrade Deno to latest Version
deno upgrade

Successfully install and Configure Deno on our ubuntu System