Installation
There are many versions of node js.
A specific project may only run with a specific version of node js.
Installing node js with the Node Version Manager has the advantage that you can switch
between different versions of node js easily.
https://github.com/nvm-sh/nvm
To install a specific version of node:
nvm install 14.7.0
To tell nvm to use a specific version of node js:
nvm use 14
To list which versions of node js are installed on my computer:
nvm ls