After finishing this doc you will have VSCode, Node.js, and Git installed on your machine.
Additional tasks
, make sure every box is checked.Once you are done, you can open up a terminal (the Ubuntu App) and type code
to open VSCode. This may or may not require a restart first.
cd ~
to bring you into the Ubuntu FS.sudo apt-get update
. This will tell Ubuntu’s apt tool to update.curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
then run:
sudo apt-get install -y nodejs
We will also install Node on Windows:
npm i -g eslint
. When finished close windows powershell.Git is already installed on Ubuntu as it comes built in. VSCode however also uses Git for it’s source-control tool to work. But since VSCode is a Windows application, it doesn’t know how to use Ubuntu’s version of Git.
Follow the onscreen instructions.
Choose the default editor used by Git
…
The final step here is to add your email and name to the Git config. This will allow you to commit and push things to GitHub. Make sure to include the space after .email
and .name
, and always remember to close your quotes ‘ ‘ and “ “.
git config --global user.email 'your email here in single quotes'
.git config --global user.name 'Your Name In Single Quotes'
.git config --global core.editor 'code --wait'
.