- Node.js Tutorial
- NodeJS Home
- NodeJS Introduction
- NodeJS Setup
- NodeJS First App
- NodeJS REPL
- NodeJS Command Line
- NodeJS NPM
- NodeJS Callbacks
- NodeJS Events
- NodeJS Event-Loop
- NodeJS Event-Emitter
- NodeJS Global-Objects
- NodeJS Console
- NodeJS Process
- NodeJS Buffers
- NodeJS Streams
- Node.js File Handling
- Node.js File System
- Node.js Read/Write File
- Working with folders in Node.js
- HTTP and Networking
- Node.js HTTP Module
- Anatomy of an HTTP Transaction
- Node.js MongoDB
- MongoDB Get Started
- MongoDB Create Database
- MongoDB Create Collection
- MongoDB Insert
- MongoDB Find
- MongoDB Query
- MongoDB Sort
- MongoDB Delete
- MongoDB Update
- MongoDB Limit
- MongoDB Join
- Node.js MySQL
- MySQL Get Started
- MySQL Create Database
- MySQL Create Table
- MySQL Insert Into
- MySQL Select From
- MySQL Where
- MySQL Order By
- MySQL Delete
- MySQL Update
- MySQL Join
- Node.js Modules
- Node.js Modules
- Node.js Built-in Modules
- Node.js Utility Modules
- Node.js Web Module
- Node.js Advanced
- Node.js Debugger
- Node.js Scaling Application
- Node.js Packaging
- Node.js Express Framework
- Node.js RESTFul API
- Node.js Useful Resources
- Node.js Useful Resources
- Node.js Discussion
Node.js Global Objects
In Node.js, global objects are objects that are available in all modules without needing to import them explicitly. These objects provide essential utilities and values, enabling developers to access important functionalities across the application.
Key Features of Global Objects
- Global Scope: Global objects are available throughout the Node.js environment, making them accessible in every module.
- No Imports Required: Unlike other modules, global objects do not need to be imported or required.
- Utilities and Values: They provide access to essential functionalities like process management, data manipulation, and file system operations.
Common Global Objects in Node.js
1. global
The global
object is the Node.js equivalent of the window
object in the browser. It provides access to global variables and functions.
global.myVar = 'Hello, World!';
console.log(myVar); // Outputs: Hello, World!
- The
global
object allows the creation of variables that can be accessed from anywhere within your Node.js application.
2. process
The process
object provides information and control over the current Node.js process. It allows for interacting with command-line arguments, environment variables, and process state.
console.log(process.argv); // Command-line arguments passed to Node.js
console.log(process.env); // Access environment variables
- Common properties include
process.argv
,process.env
, andprocess.exit()
.
3. __dirname
The __dirname
object provides the directory name of the current module file. This can be useful for resolving file paths in your application.
console.log(__dirname); // Prints the absolute path of the current directory
- It gives the full path to the directory containing the currently executing file.
4. __filename
The __filename
object provides the absolute path to the current module file.
console.log(__filename); // Prints the absolute path of the current file
- It returns the full file path of the current file being executed.
5. setTimeout()
and setInterval()
These global functions allow for delayed or repeated execution of code.
setTimeout(() => {
console.log('This runs once after 1 second');
}, 1000);
setInterval(() => {
console.log('This runs every 2 seconds');
}, 2000);
setTimeout()
executes a function once after a specified delay, whilesetInterval()
runs a function repeatedly at a fixed interval.
6. require()
The require()
function is used to import modules, JSON files, and local scripts into the current file.
const fs = require('fs');
console.log(fs); // File system module loaded
- It is a built-in function used to load other modules, such as core Node.js modules or third-party libraries.
7. console
The console
object provides access to logging functions that are commonly used for debugging and outputting messages.
console.log('Hello, Node.js!');
console.error('An error occurred!');
- It offers methods like
console.log()
,console.error()
, andconsole.warn()
for logging information and errors.
8. Buffer
The Buffer
class is used for handling binary data. It provides an efficient way to read and write data that’s outside the scope of regular JavaScript strings.
const buffer = Buffer.from('Hello');
console.log(buffer); // Outputs a buffer containing the string "Hello"
- It is useful for manipulating binary data, especially when working with streams, files, or network operations.
Summary
Node.js global objects are essential for managing processes, working with file systems, logging, and handling various utilities across your application. Understanding these global objects, such as global
, process
, __dirname
, and require()
, is vital for building efficient and scalable Node.js applications. These objects help streamline development by providing easy access to critical features without the need for importing modules.