...

/

The process Module

The process Module

Learn about the process module.

Overview

The process object provides information about the current Node.js process and allows the program to interact with it.

The process is a global object, so it can be accessed anywhere inside our Node.js applications without using require().

Now, we’ll look at a few common process properties, such as .argv and .env.

Access CLI arguments

The process.argv property allows us to ...