Loading rules of require method
1. Prioritize loading from cachemain.js: execute and load a.js module require('./a') a.js: executes and loads the b.js module, and outputs that a is loaded require('./b') console.log('a.js is loaded') b.js: Output b is loaded console.log('b.js is loaded') result: It can be seen that: main loads a.js, and then a does not print twice that a.js is loaded when loading b.js. Node will directly take out the exports value of the object from require.cache according to the passed id, and will not execute the module code again. 2. Core Modules
3. Path-based modules
var fooExports = require('./index') //Relative path, commonly used var fooExports = require('../index') //Relative path, commonly used var fooExports = require('/index') //Root directory, not commonly used var fooExports = require('D:/demo/index') //Root directory, not commonly used 4. Third-party modules
Take var template = require('art-template') as an example:
This is the end of this article about the detailed explanation of the loading rules of the require method in node.js. For more relevant content about the loading rules of the node.js require method, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the basic commands of Firewalld firewall in Centos7
>>: Practical method of deleting a row in a MySql table
The Docker Hub we used earlier is provided by Doc...
Table of contents 1 View the current database con...
Detailed explanation of MySql automatic truncatio...
Copy code The code is as follows: <html> &l...
Many people say that IE6 does not support PNG tra...
Table of contents 1. Environment variable $PATH: ...
Table of contents 1. Introduction 2. Recursion 3....
Install using the MSI installation package Downlo...
Table of contents 1. What is a subquery? 2. Where...
mysql installer community 8.0.16.0 installation g...
disabled definition and usage The disabled attrib...
Tips for viewing History records and adding times...
The main differences are as follows: 1. MySQL use...
1. Application of multimedia in HTML_falsh animat...
I have previously introduced to you the configura...