Nodejs中的require函數(shù)的具體使用方法
說(shuō)明
本文參考Node官網(wǎng)文檔版本為v11.12.0。
本文主要分析了Nodejs中require導(dǎo)入JSON和js文件時(shí)得到的結(jié)果,同時(shí)簡(jiǎn)單涉及到了Nodejs中模塊導(dǎo)出module.exports和exports的用法。
引言
在閱讀webpack源碼的過(guò)程當(dāng)中,見到如下一行代碼:
const version = require("../package.json").version
故引申出對(duì)Nodejs中require的學(xué)習(xí)。
require介紹
在Node.js的文檔中,require的相關(guān)文檔是在Modules目錄下,屬于Nodejs模塊化系統(tǒng)的一部分。
require是一個(gè)函數(shù)。通過(guò)typeof或者Object.prototype.toString.call()可以驗(yàn)證這個(gè)結(jié)論:
console.log(require) // 輸出:Function console.log(Object.prototype.toString.call(require) // 輸出:[object Function]
通過(guò)直接打印require,可以發(fā)現(xiàn)在require函數(shù)下還掛載著若干個(gè)靜態(tài)屬性,這些靜態(tài)屬性也可以在Nodejs的官方文檔中直接找到相關(guān)的說(shuō)明:
{ [Function: require]
resolve: { [Function: resolve] paths: [Function: paths] },
main:
Module {
id: '.',
exports: {},
parent: null,
filename: '/Users/bjhl/Documents/webpackSource/index.js',
loaded: false,
children: [],
paths:
[ '/Users/bjhl/Documents/webpackSource/node_modules',
'/Users/bjhl/Documents/node_modules',
'/Users/bjhl/node_modules',
'/Users/node_modules',
'/node_modules' ] },
extensions:
[Object: null prototype] { '.js': [Function], '.json': [Function], '.node': [Function] },
cache:
[Object: null prototype] {
'/Users/bjhl/Documents/webpackSource/index.js':
Module {
id: '.',
exports: {},
parent: null,
filename: '/Users/bjhl/Documents/webpackSource/index.js',
loaded: false,
children: [],
paths: [Array] } } }
require函數(shù)靜態(tài)屬性
這里之后再詳細(xì)補(bǔ)充。
require使用
在官網(wǎng)文檔中可以看到如下關(guān)于require的說(shuō)明:
require(id)# Added in: v0.1.13 id module name or path Returns: exported module content Used to import modules, JSON, and local files. Modules can be imported from node_modules. Local modules and JSON files can be imported using a relative path (e.g. ./, ./foo, ./bar/baz, ../foo) that will be resolved against the directory named by __dirname (if defined) or the current working directory.
同時(shí)還給出了三種require的使用方法:
// Importing a local module:
const myLocalModule = require('./path/myLocalModule');
// Importing a JSON file:
const jsonData = require('./path/filename.json');
// Importing a module from node_modules or Node.js built-in module:
const crypto = require('crypto');
從以上文檔中可以得出以下信息:
- require接受一個(gè)參數(shù),形參名為id,類型是String。
- require函數(shù)return的是模塊到處的內(nèi)容,類型是任意。
- require函數(shù)可以導(dǎo)入模塊、JSON文件、本地文件。模塊可以通過(guò)一個(gè)相對(duì)路徑從node_modules、本地模塊、JSON文件中導(dǎo)出,該路徑將針對(duì)__dirname變量(如果已定義)或者當(dāng)前工作目錄。
require實(shí)踐
在這里將分類討論require的實(shí)踐結(jié)論。
require導(dǎo)入JSON
JSON 是一種語(yǔ)法,用來(lái)序列化對(duì)象、數(shù)組、數(shù)值、字符串、布爾值和 null 。
在文章的開頭就提到了通過(guò)require("./package.json")文件來(lái)讀取package.json文件中的version屬性。這里將嘗試導(dǎo)入info.json文件并查看相關(guān)信息。
文件結(jié)構(gòu)目錄如下:
. ├── index.js └── info.json
將info.json文件的內(nèi)容修改為:
{
"name": "myInfo",
"hasFriend": true,
"salary": null,
"version": "v1.0.0",
"author": {
"nickname": "Hello Kitty",
"age": 20,
"friends": [
{
"nickname": "snowy",
"age": 999
}
]
}
}
在info.json當(dāng)中,包含了字符串、布爾值、null、數(shù)字、對(duì)象和數(shù)組。
將index.js的內(nèi)容修改如下并在當(dāng)前terminal運(yùn)行命令 node index.js ,得到如下結(jié)果:
const info = require("./info.json")
console.log(Object.prototype.toString.call(info)) // [object Object]
console.log(info.version) // v1.0.0
console.log(info.hasFriend) // true
console.log(info.salary) // null
console.log(info.author.nickname) // Hello Kitty
console.log(info.author.friends) // [ { nickname: 'snowy', age: 999 } ]
可以看到,require導(dǎo)入一個(gè)JSON文件的時(shí)候,返回了一個(gè)對(duì)象,Nodejs可以直接訪問(wèn)這個(gè)對(duì)象里的所有屬性,包括String、Boolean、Number、Null、Object、Array。個(gè)人猜測(cè)這里可能用到了類似于JSON.parse()的方法。
通過(guò)這個(gè)結(jié)論也得出了一種思路,即通過(guò)require方法傳入JSON文件來(lái)讀取某些值,如在文章開頭中,webpack通過(guò)讀取package.json文件獲取到了version值。
require導(dǎo)入本地js文件
文件結(jié)構(gòu)目錄如下:
. ├── index.js ├── module_a.js └── module_b.js
index.js文件中,分別按順序?qū)肓薽odule_a和module_b并賦值,然后將這兩個(gè)變量打印,內(nèi)容如下:
console.log("*** index.js開始執(zhí)行 ***")
const module_a = require("./module_a")
const module_b = require("./module_b")
console.log(module_a, "*** 打印module_a ***")
console.log(module_b, "*** 打印module_b ***")
console.log("*** index.js結(jié)束執(zhí)行 ***")
module_a文件中,未指定module.exports或者exports,但是添加了一個(gè)異步執(zhí)行語(yǔ)句setTimeout,內(nèi)容如下:
console.log("** module_a開始執(zhí)行 **")
let name = "I'm module_a"
setTimeout(() => {
console.log(name, "** setTimeout打印a的名字 **")
}, 0)
console.log("** module_a結(jié)束執(zhí)行 **")
module_b文件中,指定了module.exports(也可以換成exports.name,但是不能直接使用exports等于某個(gè)對(duì)象,因?yàn)閑xports和module.exports其實(shí)是指向了一個(gè)地址,引用了相同的對(duì)象,如果使用exports等于其他的引用類型,則不再指向module.exports,無(wú)法改變module.exports里的內(nèi)容),內(nèi)容如下:
console.log("** module_b開始執(zhí)行 **")
let name = "I'm module_b"
console.log(name, "** 打印b的名字 **")
module.exports = {
name
}
console.log("** module_b結(jié)束執(zhí)行 **")
在當(dāng)前目錄terminal下運(yùn)行 node index.js 運(yùn)行得到如下輸出:
*** index.js開始執(zhí)行 ***
** module_a開始執(zhí)行 **
** module_a結(jié)束執(zhí)行 **
** module_b開始執(zhí)行 **
I am module_b ** 打印b的名字 **
** module_b結(jié)束執(zhí)行 **
{} '*** 打印module_a ***'
{ name: 'I am module_b' } '*** 打印module_b ***'
*** index.js結(jié)束執(zhí)行 ***
I am module_a ** setTimeout打印a的名字 **
通過(guò)以上執(zhí)行結(jié)果可以得出結(jié)論:
- require某個(gè)js文件時(shí),如果未通過(guò)exports或者module.exports指定導(dǎo)出內(nèi)容,則require返回的結(jié)果是一個(gè)空對(duì)象;反之可以通過(guò)module.export或者給exports屬性賦值來(lái)導(dǎo)出指定內(nèi)容。
- require某個(gè)js文件時(shí),該文件會(huì)立即sync執(zhí)行。
require導(dǎo)入模塊
我們先選擇一個(gè)npm包——cors。 進(jìn)入文件夾,運(yùn)行一下命令:
npm init -y // 初始化 echo -e "let cors = require(\"cors\")\nconsole.log(cors)" > index.js // 生成index.js文件 npm install cors --save // 安裝cors包
文件結(jié)構(gòu)如下(...處省略了其他的模塊):
. ├── index.js ├── node_modules │ ├── cors │ │ ├── CONTRIBUTING.md │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ │ ... ├── package-lock.json └── package.json
index.js中的內(nèi)容如下:
let cors = require("cors")
console.log(cors)
運(yùn)行 node index.js ,得出以下結(jié)果:
[Function: middlewareWrapper]
找到node_modules下的cors模塊文件夾,觀察cros模塊中的package.json文件,找到main字段: "main": "./lib/index.js" ,找到main字段指向的文件,發(fā)現(xiàn)這是一個(gè)IIFE,在IIFE中的代碼中添加,console.log("hello cors"),模擬代碼結(jié)構(gòu)如下:
(function () {
'use strict';
console.log("hello cors"); // 這是手動(dòng)添加的代碼
...
function middlewareWrapper(o) {
...
}
module.exports = middlewareWrapper;
})()
再次運(yùn)行 node index.js ,得出以下結(jié)果:
hello cors
[Function: middlewareWrapper]
為什么會(huì)打印出 hello cors 呢?因?yàn)閞equire模塊的時(shí)候,引入的是該模塊package.json文件中main字段指向的文件。而這個(gè)js文件會(huì)自動(dòng)執(zhí)行,跟require引用本地js文件是相同的。
在npm的官方網(wǎng)站中可以找到關(guān)于package.json中的main字段定義。
main The main field is a module ID that is the primary entry point to your program. That is, if your package is named foo, and a user installs it, and then does require("foo"), then your main module's exports object will be returned. This should be a module ID relative to the root of your package folder For most modules, it makes the most sense to have a main script and often not much else.
在以上說(shuō)明中可以得出以下結(jié)論:
- main字段是一個(gè)模塊ID,是程序的主入口。
- 當(dāng)使用require("xxx")的時(shí)候,導(dǎo)入的是main字段對(duì)應(yīng)的js文件里的module.exports。
所以require導(dǎo)入模塊的時(shí)候,是運(yùn)行的對(duì)應(yīng)模塊package.json中main字段指定的文件。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
node.js Sequelize實(shí)現(xiàn)單實(shí)例字段或批量自增、自減
Sequelize 可以實(shí)現(xiàn)針對(duì)單個(gè)實(shí)例的一或多個(gè)字段的自增、自減操作,也可以對(duì)符合條件的數(shù)據(jù)進(jìn)行批量的自增、自減操作。單個(gè)實(shí)例字段的自增、自減可以利用Instance的相應(yīng)方法實(shí)現(xiàn),而批量自增、自減則需要借助sequelize提供的字面量方法實(shí)現(xiàn)。下面來(lái)看看詳細(xì)的介紹吧。2016-12-12
node.js中的console.dir方法使用說(shuō)明
這篇文章主要介紹了node.js中的console.dir方法使用說(shuō)明,本文介紹了console.dir的方法說(shuō)明、語(yǔ)法、接收參數(shù)、使用實(shí)例和實(shí)現(xiàn)源碼,需要的朋友可以參考下2014-12-12
Nodejs實(shí)戰(zhàn)心得之eventproxy模塊控制并發(fā)
本篇文章給大家分享我的nodejs實(shí)戰(zhàn)心得,如何使用eventproxy模塊控制并發(fā),感興趣的朋友可以參考下2015-10-10
node.js中的querystring.unescape方法使用說(shuō)明
這篇文章主要介紹了node.js中的querystring.unescape方法使用說(shuō)明,本文介紹了querystring.unescape的方法說(shuō)明、語(yǔ)法、接收參數(shù)、使用實(shí)例和實(shí)現(xiàn)源碼,需要的朋友可以參考下2014-12-12
Node.js API詳解之 vm模塊用法實(shí)例分析
這篇文章主要介紹了Node.js API詳解之 vm模塊用法,結(jié)合實(shí)例形式分析了Node.js API中vm模塊基本功能、函數(shù)、使用方法及相關(guān)操作注意事項(xiàng),需要的朋友可以參考下2020-05-05

