VOOZH
about
URL: https://www.geeksforgeeks.org/tag/node-js-globals/
⇱ Node.js-Globals Archives - GeeksforGeeks
👁 geeksforgeeks
Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Node.js
3.0K+ articles
Node.js-Misc
244+ articles
Node-URL
50+ articles
Node.js queueMicrotask() Method
Last Updated: 28 April 2025
The queueMicrotask() method in Node.js allows you to queue a function to be performed asynchronously as soon as the current code block is finished. This method only accept...
read more
👁 article_image
Web Technologies
Picked
Node.js
Node.js-Methods
Node.js-Globals
Node.js Globals Complete Reference
Last Updated: 23 July 2025
Node.js Global Objects are the objects that are available in all modules. Global Objects are built-in objects that are part of the JavaScript and can be used directly in t...
read more
Web Technologies
Node.js
Node.js-Globals
Import and Export in Node.js
Last Updated: 07 January 2025
Importing and exporting files are important parts of any programming language. Importing functions or modules enhances the reusability of code. When the application grows ...
read more
Web Technologies
Node.js
Node.js-Misc
Node.js-Globals
Node.js URL() Method
Last Updated: 03 June 2026
The URL() constructor in Node.js creates a new URL object by parsing a URL string and, when needed, resolving a relative URL against a base. It is part of the built-in url...
read more
👁 article_image
Node.js
Node-URL
Node.js-Globals
Node.js URLsearchParams API
Last Updated: 10 July 2020
Node.js is an open-source project widely used for the development of dynamic web applications. The URLSearchParams API in Node.js allows read and write operations on the U...
read more
Web Technologies
Picked
Node.js
Node.js-Basics
Node.js-Globals
Timers module in Node.js
Last Updated: 25 April 2026
The Timers module in Node.js allows execution of code after a specified delay or at repeated intervals. It is a global module, so it can be used without importing it.Helps...
read more
Web Technologies
Picked
Node.js
Node.js-Basics
Node.js-Globals
NodeJS Global Objects
Last Updated: 17 January 2026
Node.js provides a global scope mechanism that allows certain variables and functions to be available across the entire application without explicit imports.Browsers use t...
read more
👁 article_image
Web Technologies
Picked
Node.js
Node.js-Basics
Node.js-Globals
Node Export Module
Last Updated: 12 July 2025
In NodeJS, module.exports is used to share functions, objects, or values from one file to the other file so that other files can use them. This is an essential part of org...
read more
Web Technologies
Picked
Node.js
Node.js-Basics
Node.js-Globals
Node.js Buffers
Last Updated: 12 July 2025
Node.js Buffers are used to handle binary data directly in memory. They provide a way to work with raw binary data streams efficiently, crucial for I/O operations, such as...
read more
👁 article_image
Web Technologies
Picked
Node.js
Node.js-Basics
Node.js-Globals
Node.js Console
Last Updated: 17 January 2026
The console module in Node.js is a built-in utility used for logging, debugging, and displaying runtime information through standard output and error streams.Provides meth...
read more
👁 article_image
Web Technologies
Picked
Node.js
Node.js-Basics
Node.js-Globals