
Deno logo
Deno is a secure runtime for JavaScript and TypeScript.
Deno is basically Node reversed.
We will install Deno on Fedora.
https://darryldias.me/2020/deno-v1-1-1-has-been-released/
Enter the following commands in the Terminal.
curl -fsSL https://deno.land/x/install/install.sh | sh
The next step is specifying Deno’s path to bash.
Open .bashrc and add the lines below to it.
nano ~/.bashrc
export DENO_INSTALL="/home/$USER/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
https://darryldias.me/2020/deno-on-centos-rhel/
Open a new Terminal instance.
Enter the following command.
deno
https://darryldias.me/2020/deno-on-ubuntu/
https://darryldias.me/2020/how-to-setup-fastest-mirror-in-dnf/
Run the following command.
deno run https://deno.land/std/examples/welcome.ts
Happy Coding!
Comments