Introduction

This article explains the Process object in Node.js. Node.js is a server-side JavaScript language written using the Google V8 engine. The main purpose of Node.js is that system interaction should be non-blocking or asynchronous.

Process Object

The process object is the global object in Node. It can be accessed from anywhere; it is an instance of EventEmitter. Each Node.js has a set of built-in functionality, accessible through the global process object. The process object provides the standard input/output (stdio) streams stdin, stdout and stderr (as in C/C++) as in the following:
The stdout or non-blocking function are console.log, console.info, util.puts, util.print and Stderr. The blocking functions are console.warn console. error, util.debug, and process.stdin (a readable stream for getting user input).
Properties of Process Object
Version
versioncmd
platform
platformcmd

Summary

This article has explained the Process object and some of the properties of the Process object.