Skip to main content

Node

Node.js Tutorial

Node.js is a very powerful JavaScript-based platform built on Google Chrome's JavaScript V8 Engin...

Node.js - Introduction

What is Node.js? Node.js is a server-side platform built on Google Chrome's JavaScript Engine (V...

Node.js - Environment Setup

Try it Option Online You really do not need to set up your own environment to start learning N...

Node.js - First Application

Before creating an actual "Hello, World!" application using Node.js, let us see the components of...

Node.js - REPL Terminal

REPL stands for Read Eval Print Loop and it represents a computer environment like a Windows cons...

Node.js - NPM

Node Package Manager (NPM) provides two main functionalities − Online repositories for node....

Node.js - Callbacks Concept

What is Callback? Callback is an asynchronous equivalent for a function. A callback function is ...

Node.js - Event Loop

Node.js is a single-threaded application, but it can support concurrency via the concept of event...

Node.js - Event Emitter

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

Node.js - Buffers

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

Node.js - Streams

What are Streams? Streams are objects that let you read data from a source or write data to a de...

Node.js - File System

Node implements File I/O using simple wrappers around standard POSIX functions. The Node File Sys...

Node.js - Global Objects

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

Node.js - Utility Modules

There are several utility modules available in Node.js module library. These modules are very com...

Node.js - Web Module

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

Node.js - Express Framework

Express Overview Express is a minimal and flexible Node.js web application framework that provid...

Node.js - RESTful API

What is REST architecture? REST stands for REpresentational State Transfer. REST is web standard...

Node.js - Scaling Application

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

Node.js - Packaging

JXcore, which is an open source project, introduces a unique feature for packaging and encryption...