crackyourinterview.com


To improves our performance please Like Share Subscribe(Will boost us)

Node.js Globals
Question Posted on 01 Feb 2024Home >> Tutorial >> Node.js Tutorial >> Node.js Globals

Node.js Globals

Node.js Global Objects



When we say about the Global Objects in Node.js, global objects are global in nature and will available in all modules. ANd you don't need to include these objects in your application; rather they can be used directly. These objects are modules, functions, strings and object etc. Some of these objects aren't actually in the global scope but in the module scope.


A list of Node.js global objects are given below:
  • __dirname

  • __filename

  • Console

  • Process

  • Buffer

  • setImmediate(callback[, arg][, ...])

  • setInterval(callback, delay[, arg][, ...])

  • setTimeout(callback, delay[, arg][, ...])

  • clearImmediate(immediateObject)

  • clearInterval(intervalObject)

  • clearTimeout(timeoutObject)



Node.js ___dirname



This is a string. And this will specifies the name of the directory which is currently contains the code.

file: globalexample.js


console.log(_dirname);


open Node.js command prompt and run the below code:-


node glocalexample1.js




nodejs dirName


Node.js __filename



Well this will specifies the filename of the code being executed. This is the resolved absolute path of this code file. ANd the value inside a module is the path to that module file.

FIle: globalexample3.js


console.log(_filename);


Now open the node.js command prompt and then run the below code:


node globalexample.js




file name Nodejs


Node.js Console



To get more details pf console class you need to click on link. https://www.crackyourinterview.com/Tutorial-Node.js-Console.aspx

Node.js Buffer



To get more details pf console class you need to click on link. https://www.crackyourinterview.com/Tutorial-Node.js-Buffer.aspx

Node.js Timer Functions



To get more details pf console class you need to click on link. https://www.crackyourinterview.com/Tutorial-Node.js-Timer Functions.aspx
0
0



.


Most Visited Questions:-

Deep Learning Questions Answers
Below are the different Deep Leaning Questions and answer a More...

Continuous Integration Questions Answers
Below are the 20 odd questions for CI or Continuous Integra More...

Derived relationships in Association Rule Mining are represented in the form of __________.
Derived relationships in Association Rule Mining are repres More...

What is Gulpjs and some multiple choice questions on Gulp
Gulpjs is an open source whihc helps in building Javascript More...

Microservices Architecture Questions Answers
Below are the different questions on Microservices Architec More...




Other Important Questions

Parts of Node.js

Install Node.js Linux

Node.js First Example

Node.js Globals

Node.js DNS






@2014-2022 Crackyourinterview (All rights reserved)
Privacy Policy - Disclaimer - Sitemap