Skip to content

Instantly share code, notes, and snippets.

@zenius
Last active August 17, 2020 04:54
Show Gist options
  • Save zenius/22abf54111809f6fe0d46f7bdc298b3d to your computer and use it in GitHub Desktop.
Save zenius/22abf54111809f6fe0d46f7bdc298b3d to your computer and use it in GitHub Desktop.
installation and removal guide of nodejs in debian
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