How to install Node, Yarn, Git and VSCode on Linux, Mac and Windows

1 · Alex Adam · June 22, 2021, 3:29 p.m.
On Linux (Ubuntu 20.04 LTS):NodeDownload the Node LTS archive file from https://nodejs.org/ and extract it (in this example, the archive is extracted is /home/user/Downloads/)Open .bashrc in the home folder (/home/user./bashrc) with a text editor, and append:PATH=$PATH:/home/user/Downloads/node-v14.17.0-linux-x64/binThen, in a terminal:source .bashrcnode -v# v14.17.0npm -v# 6.14.13You may also need the development tools to build native addons:sudo apt install gcc g++ makeAlternatively, you can i...