Aditya Gupta

Aditya Gupta

NodeJS Child Process – A Complete Guide

Node Js Child Process Thumbnail

NodeJs Child Process is used to create child processes that can run simultaneously proving a multicore functionality to a Node.js application. Node.js is a single-threaded, it can perform one operation at a time. This limits the scalability of a Node.js…

How to Read a File in NodeJS

Reading Files Featured Image

Reading files in Node.js can be done using a built-in core module called the fs module. fs module stands for file system module which comes with many synchronous and asynchronous methods used to read and write files. To use the…