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

这是Node.JS等价于我之前在Perl中的问题:我怎么能运行我的Perl脚本,如果它没有加载require?


当前回答

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

其他回答

对于那些使用ES模块(和Node 10.12+)的用户,你可以使用import.meta.url:

import path from 'path';
import { fileURLToPath } from 'url'

const nodePath = path.resolve(process.argv[1]);
const modulePath = path.resolve(fileURLToPath(import.meta.url))
const isRunningDirectlyViaCLI = nodePath === modulePath

比如require。主要模块。parent和__dirname/__filename在ESM中不可用。

注意:如果使用ESLint,它可能会阻塞在这个语法上,在这种情况下,你需要更新到ESLint ^7.2.0,并把你的ecmaVersion调到11(2020)。

更多信息:进程。argv, import.meta.url

我对解释中使用的术语有点困惑。所以我做了几个快速检查。

我发现它们产生了相同的结果:

var isCLI = !module.parent;
var isCLI = require.main === module;

对于其他困惑的人(并直接回答这个问题):

var isCLI = require.main === module;
var wasRequired = !isCLI;

如果你正在使用ES6模块,试试这个:

if (process.mainModule.filename === __filename) {
  console.log('running as main module')
}

还有另一种稍短的方法(没有在提到的文档中列出)。

var runningAsScript = !module.parent;

我在这篇博客文章中概述了更多关于这些工作原理的细节。

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