1
如何在加載過程中從模塊內部獲取Node.js模塊的名稱?Node.js從模塊內部獲取模塊的文件名?
//mymodule.js
console.log(GET_MODULE_FULL_PATH_NAME())
//prog.js
require('/full/path/module')
OR
require('./module')
OR
require('module.js')
如何在加載過程中從模塊內部獲取Node.js模塊的名稱?Node.js從模塊內部獲取模塊的文件名?
//mymodule.js
console.log(GET_MODULE_FULL_PATH_NAME())
//prog.js
require('/full/path/module')
OR
require('./module')
OR
require('module.js')
使用__filename
。這會讓你得到你想要的。