Search⌘ K
AI Features

Globals

Discover the core global objects available in Node.js that don't require imports, such as Buffer, console, and timers. Learn how the global scope in Node.js modules differs from browser global scope and how to access command line arguments via the process object.

We'll cover the following...

Everywhere

Global objects, or simply globals, are available in every module. This allows them to be used without importing a specific module. Modules like fs and events need to be imported; however, some objects, like buffer, did not need to be imported. The Buffer class is defined ...

svg viewer