process.mainModule DEP0138
This recipe transforms the usage of process.mainModule to use require.main in CommonJS modules.
See DEP0138.
Example
Before:
js
After:
js
Explore community-led codemods to migrate, optimize, and transform your codebase.
Build your own codemod and share it with the community.
Handle DEP0138 via transforming `process.mainModule` to `require.main`.
The easiest way to run this codemod without installing anything globally:
This recipe transforms the usage of process.mainModule to use require.main in CommonJS modules.
See DEP0138.
Before:
js
After:
js
Build your own codemod and share it with the community.