es-main

Test if an ES module is run directly (require.main replacement)

MIT 8 个版本
安装
npm install es-main
yarn add es-main
pnpm add es-main
bun add es-main
README

es-main

Test if an ES module is run directly with Node.js. Acts as a replacement for require.main.

[!NOTE] If you are using Node.js versions newer than 22.18.0 or 24.2.0, you should use the built-in import.meta.main instead of this module.

use

import esMain from 'es-main';

if (esMain(import.meta)) {
  // Module run directly.
}

why?

It can be useful to have a module that is both imported from other modules and run directly. With CommonJS, it is possible to have a top-level condition that checks if a script run directly like this:

if (require.main === module) {
  // Do something special.
}

With ES modules in Node.js, require.main is not available. Other alternatives like process.mainModule and module.parent are also not defined for ES modules. In the future, there may be an alternative way to do this check (e.g. import.meta.main or a special main export). Until then, this package provides a workaround.

版本列表
1.4.0 2025-08-10
1.3.0 2023-09-02
1.2.0 2022-06-28
1.1.1 2022-06-28
1.1.0 2022-06-28
1.0.2 2020-02-20
1.0.1 2020-02-19
1.0.0 2020-02-19