Search posts, tags, users, and pages
Sunil Aleti
Software Developer at Cognizant
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...
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 | sh
curl -fsSL deno.land/x/install/install.sh | sh
Use nano to edit the file and add these two lines: sudo nano .bashrc
sudo nano .bashrc
export DENO_INSTALL="/$HOME/.deno" export PATH="$DENO_INSTALL/bin:$PATH"
Execute the file: source ~/.bashrc
source ~/.bashrc
That's it, run: deno
deno
Esaú Morais
⚛️ Front-End Developer
Thanks for mentioning :)
Edidiong Asikpo (Didi)
Senior Developer Advocate at Ambassador Labs
Very insightful read. Thanks for sharing Sunil Aleti.
Thanks
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