Overview of Deno JS - Installation and Building an API
Overview of DENO JS
Deno is a JavaScript/TypeScript runtime created by Ryan Dahl the same developer who created Node js
It uses URLs for loading local or remote dependencies, similar to browsers.
And it includes a built-in package manager for resourc...
blog.sunilaleti.dev3 min read
Esaú Morais
Simple and useful, thank you 🤩
Note to Ubuntu users: he didn't say how works Deno installation. So, here is:
Add deno using CURL:
curl -fsSL deno.land/x/install/install.sh | shUse nano to edit the file and add these two lines:
sudo nano .bashrcexport DENO_INSTALL="/$HOME/.deno" export PATH="$DENO_INSTALL/bin:$PATH"Execute the file:
source ~/.bashrcThat's it, run:
deno