These objects are available in all modules. The following variables may appear to be global but are not. They exist only in the scope of modules, see the module system documentation:
The objects listed here are specific to Node.js. There are a number of built-in objects that are part of the JavaScript language itself, which are also globally accessible.
Used to handle binary data. See the buffer section.
This variable may appear to be global but is not. See __dirname
.
This variable may appear to be global but is not. See __filename
.
clearImmediate
is described in the timers section.
clearInterval
is described in the timers section.
clearTimeout
is described in the timers section.
Used to print to stdout and stderr. See the console
section.
This variable may appear to be global but is not. See exports
.
In browsers, the top-level scope is the global scope. This means that within the browser var something
will define a new global variable. In Node.js this is different. The top-level scope is not the global scope; var something
inside a Node.js module will be local to that module.
This variable may appear to be global but is not. See module
.
The process object. See the process
object section.
This variable may appear to be global but is not. See require()
.
setImmediate
is described in the timers section.
setInterval
is described in the timers section.
setTimeout
is described in the timers section.
The WHATWG URL
class. See the URL
section.
The WHATWG URLSearchParams
class. See the URLSearchParams
section.
© Joyent, Inc. and other Node contributors
Licensed under the MIT License.
Node.js is a trademark of Joyent, Inc. and is used with its permission.
We are not endorsed by or affiliated with Joyent.
https://nodejs.org/dist/latest-v10.x/docs/api/globals.html