1

如何在加载过程中从模块本身内部获取 Node.js 模块的名称?

//mymodule.js
console.log(GET_MODULE_FULL_PATH_NAME())

//prog.js

require('/full/path/module')
   OR
require('./module')
   OR
require('module.js')
4

1 回答 1

3

使用__filename. 这会让你得到你想要的。

http://nodejs.org/api/globals.html#globals_filename

于 2013-10-10T19:57:16.130 回答