Ubuntu Tutorial
Ubuntu Useful Resources
Selected Reading
- Ubuntu - On the Cloud
- Ubuntu - Docker
- Ubuntu - Node.js
- Ubuntu - Installing MySQL & Python
- Ubuntu - Virtual Machines
- Ubuntu - Nginx
- Ubuntu - Development
- Ubuntu - Secure Shell
- Ubuntu - Server Installation
- Ubuntu - Networking
- Ubuntu - Scripting
- Ubuntu - Command Line
- Ubuntu - LibreOffice
- Ubuntu - Spreadsheets
- Ubuntu - Word Writer
- Ubuntu - Files & Folders
- Ubuntu - User Management
- Ubuntu - Media Players
- Ubuntu - Messaging
- Ubuntu - Email
- Ubuntu - Browsers
- Ubuntu - Software Center
- Ubuntu - Device Drivers
- Ubuntu - Environment
- Ubuntu - Flavors
- Ubuntu - Overview
- Ubuntu - Home
Ubuntu Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Ubuntu - Node.js
Ubuntu - Node.js
Node.js is a popular JavaScript framework used for developing server side apppcations. In this chapter, we will see how to get Node.js installed on Ubuntu.
Following are the steps to get Node.js installed.
Step 1 − Run the following command.
sudo apt-get install nodejs
This will install all the necessary packages for Node.js
Next, we need to install the Node package manager which is required for Node.js apppcations.
Step 2 − Run the following command.
sudo apt-get install npm
All the necessary packages for the node package manager will be installed.
Step 3 − Next, create a symbopc pnk to the Node.js folder. Then, run the Node –v command and npm –v to see the Node and npm version installed.
Advertisements