一尘不染

检测是通过require还是直接通过命令行调用

node.js

如何检测是否使用SH:node path-to-file或JS:调用了Node.JS文件require('path-to-file')


阅读 214

收藏
2020-07-07

共1个答案

一尘不染

if (require.main === module) {
console.log(‘called directly’);
} else {
console.log(‘required as a module’);
}

请在此处查看有关此文档的文档:https
:
//nodejs.org/docs/latest/api/modules.html#modules_accessing_the_main_module

2020-07-07