Clear, practical technology insights About · Contact

NodeJS

Explore the latest NodeJS articles and guides at TipsMake, presented clearly and practically. Follow these practical guides and solutions to help you master your technology, software, and your work.

Latest NodeJS Articles

What is Node.js?
NodeJS

What is Node.js?

NodeJS is a Server side platform built on Javascript Engine (V8 Engine). Node.js was developed by Ryan Dahl in 2009 and the final version is v0.10.36.

16 July 2026 · 4 min read
Instructions for installing Node.js
NodeJS

Instructions for installing Node.js

If you want to set up node.js environment on your personal computer, you must have 2 software on your computer.

16 July 2026 · 3 min read
Module in Node.js
NodeJS

Module in Node.js

Node.js uses the Module architecture to simplify the creation of complex applications. The module is like libraries in C, C #, Java ... Each module contains a set of functional functions related to an object of Module.

16 July 2026 · 4 min read
Hello World program in Node.js
NodeJS

Hello World program in Node.js

Before creating the actual Hello world application in Node.js, see the main parts of the Node.js program. A Node.js program includes the following important sections.

16 July 2026 · 3 min read
REPL Terminal in Node.js
NodeJS

REPL Terminal in Node.js

REPL is an acronym for Read Eval Print Loop (understandably: Reading - Evaluating - Printing - Repeating) and it represents the computer environment like the console screen in the Linux shell where you can type the command line and the system The system will return the results. Node.js also has a REPL environment.

16 July 2026 · 4 min read
NPM in Node.js
NodeJS

NPM in Node.js

Provides utilities to install Node.js packages, version management and dependency management of packages in Node.js.

16 July 2026 · 9 min read
Callbacks concept in Node.js
NodeJS

Callbacks concept in Node.js

Callback has the same asynchronous property for a function. A callback function is called when completing a specific task. All Node APIs are written in the way of callback functions.

16 July 2026 · 3 min read
Event Loop in Node.js
NodeJS

Event Loop in Node.js

Node.js is a single thread application, but it supports concurrent processing through event definitions and callbacks. As all Node.js APIs are asynchronous and single threaded, it uses the async function to maintain concurrency. Node.js uses the Pattern Observer.

16 July 2026 · 5 min read
Event Emitter in Node.js
NodeJS

Event Emitter in Node.js

Many objects in Node.js generate events, for example net.Server generates an event every time a peer connection to it, or fs.readStream generates an event when a file is opened. All of these objects are instances of the events.EventEmitter class in Node.js.

16 July 2026 · 5 min read
Concept of Buffer in Node.js
NodeJS

Concept of Buffer in Node.js

Net Javascript is Unicode encoded conveniently but not really good with binary data. When working with TCP streams or file systems, it is necessary to handle octal data streams. Node.js provides Buffer classes that allow raw data to be stored as an array of integers corresponding to external raw memory allocation V8 heap.

16 July 2026 · 9 min read
Stream in Node.js
NodeJS

Stream in Node.js

Streams are objects that allow you to read data from one source and record data to a destination. In Node.js, there are 4 types of Streams.

16 July 2026 · 7 min read
Read the File record in Node.js
NodeJS

Read the File record in Node.js

In the previous chapters, you found that you used a lot of require (fs) syntax. So what is the syntax to do? This is the syntax to declare fs Module to deploy File I / O operations in Node.js.

16 July 2026 · 19 min read
Global objects in Node.js
NodeJS

Global objects in Node.js

The Global Concept (Global) means everything has access to it. In Node.js, too, global objects are available for all modules. We do not need to declare or import them by the require () method but can still use them directly.

16 July 2026 · 5 min read
Utility Module in Node.js
NodeJS

Utility Module in Node.js

The Node.js Library Module provides many Utility Modules that help you a lot while developing applications on Node.js. The following table lists and describes these Utility Modules.

16 July 2026 · 23 min read
Web Module in Node.js
NodeJS

Web Module in Node.js

Web Server is a software application that can handle HTTP requests sent by HTTP Client (for example, a web browser) and return a web page in response to the Client. Web Server often sends html documents next to images as well as style sheets and Javascript segments.

16 July 2026 · 4 min read
Express Framework in Node.js
NodeJS

Express Framework in Node.js

Express is a small framework and utility for building web applications, providing a huge amount of powerful features for developing web and mobile applications. It is easy to develop fast applications based on Node.js for Web applications. Below are the basic features of Express framework.

16 July 2026 · 12 min read
RESTful API in Node.js
NodeJS

RESTful API in Node.js

REST stands for Representational State Tranfer. REST is a web standard based on basic architectures using HTTP protocol. It processes resources, where each component is a resource and this resource can be accessed through common interfaces using standard HTTP methods. REST was first introduced by Roy Fielding in 2000.

16 July 2026 · 8 min read
Request object in Node.js
NodeJS

Request object in Node.js

The req object represents the HTTP Request and has properties for the request query string, parameters, body, HTTP Header ...

16 July 2026 · 4 min read
Response object in Node.js
NodeJS

Response object in Node.js

The object res represents the HTTP Response that the Express application sends when receiving an HTTP Request.

16 July 2026 · 7 min read