Install nodesjs
Windows:
- Nodejs download address
- Select the windwos Instller digit
- Select a directory to install and go next
- Terminal test
node -v
- If the version number is displayed, the Windows NodeJS environment is set up successfully
linux
- Nodejs download address
- Select Linux x86 / x64
- Choose the right place to store it
tar -xvf node-vx.xx.x-linux-x64.tar.xz
mv node-vx.xx.x-linux-x64 nodejs
- Establishing a soft connection
ln -s /user_local/nodejs/bin/npm /usr/local/bin/
ln -s /user_local/nodejs/bin/node /usr/local/bin/
- Terminal test
node -v
mac
- The above official website download
- Select the Installer of a MAC address
- Download and install
- Also test terminal
node -v