Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.09 KB

README.md

File metadata and controls

37 lines (30 loc) · 1.09 KB

Getting started with node.js

This repository contains the details of the activities which we will or are about to do in the session, Getting Started with Web Development using Node. Fork it, clone it and get started with web development using node.js

Installation

Please follow the instructions according to your operating system.

Windows

  1. 32 bit
  2. 64 bit

After downloading it just double click it to run and then follow the onscreen instructions.

Linux

Ubuntu

Open terminal and paste this

-> curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
-> sudo apt install nodejs
Fedora

Open terminal and paste this

-> curl -sL https://rpm.nodesource.com/setup_10.x | sudo bash -
-> sudo dnf install -y gcc-c++ make
-> sudo dnf install -y nodejs

TO verify if it has been installed in your system open terminal and type

-> node -v

If it gives output something like this then :kudos you have successfully installed node.

-> v10.15.0