Category: node_js

Securing Passwords in Node.js with Bcrypt

Node.js, a versatile platform for server-side programming, offers a range of libraries for enhancing security. One such library is bcrypt,…

Continue Reading Securing Passwords in Node.js with Bcrypt

NodeJS Body-Parser: Essential Middleware for JSON and URL-Encoded Data in Express.js

Express.js stands out as a minimalist web framework, providing a robust set of features to create web and mobile applications….

Continue Reading NodeJS Body-Parser: Essential Middleware for JSON and URL-Encoded Data in Express.js

Exploring Node.js zlib: A guide to compression and decompression

Node.js, a versatile platform for building a variety of applications, includes a powerful module named zlib for handling compression and…

Continue Reading Exploring Node.js zlib: A guide to compression and decompression

Node JS : Reading input from readable streams : readline

Understanding the Readline Module The readline module in Node.js is designed to read data from a readable stream, such as…

Continue Reading Node JS : Reading input from readable streams : readline

Node.js URL parsing – Toolkit for efficient URL management

The Node.js url module provides utilities for URL resolution and parsing, making the task of working with URLs more structured…

Continue Reading Node.js URL parsing – Toolkit for efficient URL management

Network programming in Node.js with the ‘net’ module

In this article, we explore the capabilities of the net module, accompanied by practical, real-world examples that you can compile…

Continue Reading Network programming in Node.js with the ‘net’ module

Built-in module that allows you to execute other applications or scripts in your environment using Node.js

Asynchronous event-driven architecture allows Node.js to perform non-blocking operations, which is a fundamental aspect of its efficiency. However, there are…

Continue Reading Built-in module that allows you to execute other applications or scripts in your environment using Node.js

Cryptographic in Node.js with the Crypto module – Helps in securing communication : crypto

Node.js’s crypto module provides a range of cryptographic functionalities including set of wrappers for OpenSSL’s hash, HMAC, cipher, decipher, sign,…

Continue Reading Cryptographic in Node.js with the Crypto module – Helps in securing communication : crypto

Parsing and formatting URL query strings in Node JS using querystring.

The querystring module provides utilities for parsing and formatting URL query strings. It can be used to convert query strings…

Continue Reading Parsing and formatting URL query strings in Node JS using querystring.