Last active
August 17, 2020 04:54
-
-
Save zenius/22abf54111809f6fe0d46f7bdc298b3d to your computer and use it in GitHub Desktop.
installation and removal guide of nodejs in debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Steps: | |
1. update the apt package | |
sudo apt update | |
2. install node and npm package | |
sudo apt install nodejs npm | |
3. To check if node is properly installed, | |
node --version | |
output: | |
<you will get your node version here> | |
Note: | |
1. To install particular node version | |
sudo apt install nodejs <node-version> | |
2. To remove the node package | |
sudo apt remove nodejs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment