Tuesday 31 October 2017

Node JS - Getting Started

Node

- Node.js is a JavaScript runtime.
- It is commonly referred as node.
- It uses a non-blocking I/O (asynchronous) model that makes it lightweight, efficient, popular, fast, scalable and reliable.
- Examples of NodeJS are Netflix, PayPal and Uber.

* Before starting first thing you should ask yourself is "What is Programming Language ?"

- Program is a set of instruction for the computer to carry out. The instruction written in the language which computer understands is called Programming Languages.

* What we are doing?

We are writing program in JavaScript language and running it in another program called Node JS.

* Installation

1. Go to this site.


- In Windows it will be downloaded in MSI file format.

- Once downloaded run the Node setup.


- Allow node setup to run for installation to start

# To check installation is done properly -

1. Select Node JS Command Prompt

2.  Write < node -v > in Node Command Prompt // To check node version








No comments:

Post a Comment

Chapter : 1 - First code in Node JS Previously I have written a blog about Getting Started with Node JS and its installation. Now lets s...