Global ObjectAll modules can be called
Global FunctionsTimer functions: There are 4 timer functions: setTimeout(), clearTimeout(), setInterval(), clearInterval(). require: used to load modules. It was often seen in King Qi's house and heard several times in Cui Jiu's hall. Global variables
Quasi-global variablesThe local variables inside the module point to different objects depending on the module, but they are applicable to all modules and can be regarded as pseudo-global variables, mainly module, module.exports, exports, etc. The module variable refers to the current module. The module.exports variable represents the interface exported by the current module. When other files load the module, they actually read the module.exports variable.
Global sample code // Include the full path of the file name console.log(__filename); // The path to the file (excluding the file name) console.log(__dirname); // Timing function, usage is similar to the timing function in the browser var timer = setTimeout(function(){ console.log(123); },1000); setTimeout(function(){ clearTimeout(timer); },2000); // There is no window object in Node.js, but there is a similar object global, which can be omitted when accessing global members global.console.log(123456); // argv is an array. By default, the first two items are: the path of the Node.js environment; the full path of the currently executed js file // Starting from the third parameter, it represents the command line parameters console.log(process.argv); // Print the current system architecture (64-bit or 32-bit) console.log(process.arch); This is the end of this article about the specific use of node.js global variables. For more relevant node.js global variables content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to quickly delete all tables in MySQL without deleting the database
1. Install JDK Check the computer's operating...
What is HTML? HTML is a language used to describe...
This article shares the specific code for JavaScr...
This article example shares the specific code of ...
First time using docker to package and deploy ima...
1. Environmental Preparation Tencent Cloud Server...
Table of contents Preface Why introduce unit test...
How can you improve web page performance? Most de...
This article summarizes the knowledge points of M...
From today on, I will regularly organize some smal...
The fastest way to experience the latest version ...
1. What is HTML markup language? HTML is a markup...
No matter how wonderful your personal website is,...
Method 1: float:right In addition, floating will ...
According to Chinese custom, we are still celebra...