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,…
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….
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…
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…
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…
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…
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…
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,…
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…
Node.js with Assert module : Straight forward way to write tests for your Node.js applications : assert
The assert module is one of the core libraries in Node.js, meaning it comes bundled with Node.js installation, and thus,…