NodeJS is a JavaScript framework that allows you to build fast network applications with ease. In this guide, we delve in and see how you can How to install NodeJS on Ubuntu 18.04.
To start off, add the NodeJS PPA to your system using the following commands.
sudo apt-get install software-properties-common
Sample Output Next, add the NodeJS PPA.
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
Sample Output Great! In our next step, we are going to run the command for installing NodeJS.
After successfully adding the NodeJS PPA, It’s time now to install NodeJS using the command below.
sudo apt-get install nodejs
Sample Output This command not only installs NodeJS but also NPM (NodeJS Package Manager) and other dependencies as well.
After successful installation of NodeJS, you can test the version of NodeJS using the simple command below.
node -v
Sample Output For NPM, run
npm -v
Sample Output
This is an optional step that you can use to test if NodeJS is working as intended. We are going to create a web server that displays the text “Congratulations! node.JS has successfully been installed !” Let’s create a NodeJS file and call it nodeapp.js
vim nodeapp.js
Add the following content
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Congratulations! node.JS has successfully been installed !\n');
}).listen(3000, " server-ip);
console.log('Server running at https://server-ip:3000/');
Save and exit the text editor Start the application using the command below
node nodeapp.js
Sample Output This will display the content of the application on port 3000. Ensure the port is allowed on the firewall of your system.
ufw allow 3000/tcp
ufw reload
Now open your browser and browse the server’s address as shown
https://server-ip:3000
If you wish to uninstall NodeJS from your Ubuntu system, run the command below.
sudo apt-get remove nodejs
The command will remove the package but retain the configuration files. To remove both the package and the configuration files run:
sudo apt-get purge nodejs
As a final step, you can run the command below to remove any unused files and free up the disk space
sudo apt-get autoremove
Great! We have successfully installed and tested the installation of NodeJS. We also learned how to uninstall NodeJS from Ubuntu and clean up space.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
Thanks, Please change curl -sL https://deb.nodesource.com/setup\_11.x | sudo -E bash - to curl -sL https://deb.nodesource.com/setup\_12.x | sudo -E bash - and }).listen(3000, " server-ip); to }).listen(3000);
- Damien Bushby
I have run all uninstalling commands but still, it shows node version in ubuntu system
- S Blckhrt