Basic Concepts of Node.js

Anup Sarkar
Tensult Blogs
Published in
4 min readApr 16, 2018

This Blog has moved from Medium to blogs.tensult.com. All the latest content will be available there. Subscribe to our newsletter to stay updated.

Node.js and Angular 5 are popular in modern days. These two technologies are important for building a Mean Stack Application.

For practicing Node.js and Angular, first you have to install an IDE for example Visual Studio Code, you can also choose other tools like Sublime Text, Atom. For Mac users, we prefer Visual Studio Code and I feel it is a great choice.

In this blog I will cover a few basic concepts of Node.js..

Limitation of Multi-Threaded Models:

  1. In a multi-threaded HTTP server, for each & every request that the server receives, it creates the separate thread which handles that request.
  2. If a request acquires a lock in the shared resources and it is ‘exclusive’ it will effect result of other requests.

Before learning Node.js first you have to know ..

What is Node.js?

Node.js is an open source server framework, completely free, and used by thousands of developers around the world.

Node.js is an open-source runtime environment for server-side and networking applications and is single-threaded.

It uses the Google JavaScript V8 Engine to execute code.

It is a cross-platform environment and can run on Microsoft Windows Linux, FreeBSD, and IBM

It provides an event-driven architecture and non-blocking I/O that is optimized & scalable.

Why Node.js?

As Node.js is a asynchronous programming we don’t need to wait for one request to complete fully, it’s simply take the next request so there is no waiting time and that’s is the best part of the Node.js. Node.js is very memory efficient because of it’s features.

What is Non-Blocking I/O?

When the request comes to the server, it triggers off of passing request & doesn’t wait for the response. During this time it has some amount of free time which can be managed to get more request from our clients.

Non-Blocking refers to code that doesn’t block execution. One advantage of non-blocking, asynchronous operations is that you can maximize the usage of a single CPU as well as memory.

Blocking Node.js Code:

const fs = require('fs');// account.txt : Hello Java.
let contents = fs.readFileSync('account.txt', 'utf8');
console.log(contents);console.log('Hello Ruby.');// acc.txt: Hello C++
let contents = fs.readFileSync('acc.txt', 'utf8');
console.log(contents);console.log('Hello Node');

O/P: Hello Java . Hello Ruby . Hello C++ . Hello Node

Non Blocking Node.js Code:

const fs = require ('fs');// account.txt : Hello Java.
fs.readFile('account.txt', 'utf8', function(error, contents){
console.log(contents);})

console.log(‘Hello Ruby.’);
// acc.txt: Hello C++
fs.readFile('acc.txt','utf8', function(error, contents){
console.log(contents);})console.log(‘Hello Node.’);

Output : Hello Ruby . Hello Node . Hello Java . Hello C++

What is NPM?

NPM is a package manager for Node.js packages, or modules .Here all the node packages are available. By using the NPM, you can install all the packages you want.

You can install the following packages using NPM:

npm install -g @angular/cli   // for installing NPM globally
npm install --save express // for installing NPM locally

How You Create Your Server in Node.js :

let http=require('http');//port declaration
let port=9001;
// Creating a Server
let server = http.createServer(function(req, res){
res.write("My New Server");
res.end();
})
// Listen to the Server
server.listen(port, function(){
console.log('Server Listening to the port :'+port);
})
/* If there is no error it will start the port.Once the port started we can access our server by entering the port number*/

This is the very basic way of creating a server. If you want to know more about advanced routing and express concepts, I will explain that in the express blog.

Modules in Node.js :

Modules is a set of functions that perform a particular task and holds some functionalities.

Node.js has set of modules. We can use those modules with out having any further installations.

To include a module, we use require() function with the name of the module:

// For including file System
const fs = require('fs');
// For including Express
const express = require('express');

Create Your Own Module:

You can create your own module manually.You just need to create an ‘.js’ file with some functionalities and include that file when you want to use .

The following example creates a module that returns an addition of two numbers.

// additon.js
exports.addNumber = function() {
return a + b;
}

“Export” keyword is used to ensure that the functionality defined in this file can actually be accessed by other files.

Include Your Custom Module:

let addition = require('./addition.js');
console.log(addition.addNumber(3, 5));

This is how you can access your custom module. Now you just need to run the code on the server and you will find your expected result.

In the next blog I will cover some advance topics of Node.js.

--

--