diff --git a/doc/api/process.md b/doc/api/process.md index 2aaf11105a1c3e..27ba6db319ac8e 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -5,7 +5,12 @@ The `process` object is a `global` that provides information about, and control over, the current Node.js process. As a global, it is always available to -Node.js applications without using `require()`. +Node.js applications without using `require()`. It can also be explicitly +accessed using `require()`: + +```js +const process = require('process'); +``` ## Process Events