Category Archives

Node.js – Scaling Application

Node.js runs in a single-thread mode, but it uses an event-driven paradigm to handle concurrency. It also facilitates creation...

Node.js – Scaling Application

Node.js runs in a single-thread mode, but it uses an event-driven paradigm to handle concurrency. It also facilitates creation...

Node.js – Web Module

What is a Web Server? A Web Server is a software application which handles HTTP requests sent by the...

Node.js – Web Module

What is a Web Server? A Web Server is a software application which handles HTTP requests sent by the...

Node.js – Express Framework

Express Overview Express is a minimal and flexible Node.js web application framework that provides a robust set of features...

Node.js – Express Framework

Express Overview Express is a minimal and flexible Node.js web application framework that provides a robust set of features...

Node.js – RESTful API

What is REST architecture? REST stands for REpresentational State Transfer. REST is web standards based architecture and uses HTTP...

Node.js – RESTful API

What is REST architecture? REST stands for REpresentational State Transfer. REST is web standards based architecture and uses HTTP...

Node.js – Global Objects

Node.js global objects are global in nature and they are available in all modules. We do not need to...

Node.js – Global Objects

Node.js global objects are global in nature and they are available in all modules. We do not need to...

Node.js – Utility Modules

There are several utility modules available in Node.js module library. These modules are very common and are frequently used...

Node.js – Utility Modules

There are several utility modules available in Node.js module library. These modules are very common and are frequently used...

Node.js – Buffers

Pure JavaScript is Unicode friendly, but it is not so for binary data. While dealing with TCP streams or...

Node.js – Buffers

Pure JavaScript is Unicode friendly, but it is not so for binary data. While dealing with TCP streams or...

Node.js – Event Emitter

Many objects in a Node emit events, for example, a net.Server emits an event each time a peer connects...

Node.js – Event Emitter

Many objects in a Node emit events, for example, a net.Server emits an event each time a peer connects...

Node.js – NPM

Node Package Manager (NPM) provides two main functionalities − Online repositories for node.js packages/modules which are searchable on search.nodejs.org...

Node.js – NPM

Node Package Manager (NPM) provides two main functionalities − Online repositories for node.js packages/modules which are searchable on search.nodejs.org...

Node.js – Callbacks Concept

What is Callback? Callback is an asynchronous equivalent for a function. A callback function is called at the completion...

Node.js – Callbacks Concept

What is Callback? Callback is an asynchronous equivalent for a function. A callback function is called at the completion...