Git dowload page -- install current version
Open a terminal and type:
$ git --version
And you should have this printed out if the install has been successful:
git version 2.10.1
If this is the first time you use git, please make sure you give yourself a user name/email:
$ git config --global user.name "Felix the Cat"
$ git config --global user.name "felix@miauw.org"
These credentials will be used to identify your work when committing to a git repository.
Node.js download page -- install LTS verion v6.9.1
Open a terminal and type:
$ node --version
And you should have this printed out if the install has been successful:
v6.9.1