- Node.js Tutorial
- NodeJS Home
- NodeJS Introduction
- NodeJS Setup
- NodeJS First App
- NodeJS REPL
- NodeJS Command Line
- NodeJS NPM
- NodeJS Callbacks
- NodeJS Events
- NodeJS Event-Loop
- NodeJS Event-Emitter
- NodeJS Global-Objects
- NodeJS Console
- NodeJS Process
- NodeJS Buffers
- NodeJS Streams
- Node.js File Handling
- Node.js File System
- Node.js Read/Write File
- Working with folders in Node.js
- HTTP and Networking
- Node.js HTTP Module
- Anatomy of an HTTP Transaction
- Node.js MongoDB
- MongoDB Get Started
- MongoDB Create Database
- MongoDB Create Collection
- MongoDB Insert
- MongoDB Find
- MongoDB Query
- MongoDB Sort
- MongoDB Delete
- MongoDB Update
- MongoDB Limit
- MongoDB Join
- Node.js MySQL
- MySQL Get Started
- MySQL Create Database
- MySQL Create Table
- MySQL Insert Into
- MySQL Select From
- MySQL Where
- MySQL Order By
- MySQL Delete
- MySQL Update
- MySQL Join
- Node.js Modules
- Node.js Modules
- Node.js Built-in Modules
- Node.js Utility Modules
- Node.js Web Module
- Node.js Advanced
- Node.js Debugger
- Node.js Scaling Application
- Node.js Packaging
- Node.js Express Framework
- Node.js RESTFul API
- Node.js Useful Resources
- Node.js Useful Resources
- Node.js Discussion
Node.js Process
The process
object in Node.js provides information and control over the current Node.js process. It allows interaction with the system environment, command-line arguments, and process state. The process
object is available globally in every Node.js application.
Key Features of Process
- Access to Command-Line Arguments:
process.argv
allows you to access the arguments passed to the Node.js process. - Environment Variables:
process.env
lets you access environment variables. - Exit Control:
process.exit()
allows you to exit the Node.js process with a specific exit code. - Process State: It provides useful information like the current working directory and memory usage.
Common Process Methods and Properties
1. process.argv
The argv
property provides an array containing the command-line arguments passed to the Node.js process. The first two elements are reserved for Node.js and the script being executed, while the remaining elements are the arguments passed to the script.
console.log(process.argv);
Output:
[ 'node', 'script.js', 'arg1', 'arg2' ]
- You can use
process.argv
to retrieve the arguments passed when executing a Node.js script.
2. process.env
The env
property is an object that contains the user environment variables. You can access environment variables to configure the application.
console.log(process.env.NODE_ENV); // Access the NODE_ENV environment variable
Output:
production
- This can be useful for accessing environment-specific configurations, like development or production settings.
3. process.exit()
The exit()
method is used to terminate the current Node.js process. You can specify an exit code to indicate whether the process was successful or encountered an error.
console.log('Exiting the process...');
process.exit(0); // Exits with a successful status code
Output:
Exiting the process...
- By default, Node.js exits with a status code of
0
if no arguments are passed toprocess.exit()
. Non-zero codes indicate errors.
4. process.pid
The pid
property provides the process ID of the current Node.js process. This is useful for process management or monitoring.
console.log(`Process ID: ${process.pid}`);
Output:
Process ID: 12345
- The process ID can be used to track or manage the specific Node.js process.
5. process.uptime()
The uptime()
method returns the number of seconds the current Node.js process has been running. It is helpful for measuring the runtime of an application.
console.log(`Process uptime: ${process.uptime()} seconds`);
Output:
Process uptime: 45.678 seconds
- It returns the uptime in seconds, which can be useful for performance monitoring.
6. process.cwd()
The cwd()
method returns the current working directory of the Node.js process. It’s useful for resolving file paths or determining the directory in which the script is running.
console.log(`Current working directory: ${process.cwd()}`);
Output:
Current working directory: /Users/username/project
- It shows the directory where the Node.js process is being executed, which can help when working with file paths.
7. process.memoryUsage()
The memoryUsage()
method returns an object describing the memory usage of the Node.js process, including the heap and external memory used.
console.log(process.memoryUsage());
Output:
{
rss: 12487680,
heapTotal: 5201920,
heapUsed: 3153568,
external: 4502
}
- The object contains the
rss
(resident set size),heapTotal
,heapUsed
, andexternal
memory metrics, which are useful for performance monitoring.
Summary
The process
object in Node.js is an essential global object that allows interaction with the current Node.js process. It provides critical functionalities like accessing command-line arguments (process.argv
), environment variables (process.env
), and managing the process state (e.g., process.exit()
and process.pid
). Additionally, process
helps monitor system performance with methods such as process.uptime()
and process.memoryUsage()
. Understanding and using the process
object is key to building robust, system-aware applications in Node.js.