DEP0138: process.mainModule


类型:仅文档

【Type: Documentation-only】

process.mainModule 是仅限 CommonJS 的功能,而 process 全局对象可以在非 CommonJS 环境中共享。在 ECMAScript 模块中使用它是不支持的。

它已被弃用,建议使用 require.main,因为它具有相同的功能,并且仅在 CommonJS 环境中可用。

【It is deprecated in favor of require.main, because it serves the same purpose and is only available on CommonJS environment.】

提供了自动迁移(来源):

【An automated migration is available (source):】

npx codemod@latest @nodejs/process-main-module