Aditya Gupta

Aditya Gupta

NodeJS Globals: A Beginner’s Guide

NodeJS Globals Thumbnail

NodeJS globals can be directly called inside any project without importing them. There are many built-in globals that provide different functions such as getting the directory name, and file name, printing different values in the console, setting timers, exporting and…

NodeJS OS Module: A Complete Guide

NodeJS OS Thumbnail

NodeJS OS is used to get information regarding the OS installed on the machine in which Node is running. Node OS will help to interact with the Operation System running the Node.js server to manage the resources, performance, etc. It…

NodeJS Command Line Options

Node Js Command Line Options Thumbnail

Node.js gives the power to interact with the command line and perform different operations by giving the command line options which can be used for different purposes like running JavaScript code, checking for errors in a particular file or even…

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…