admin_vue/11-前端模块化开发Webpack(Node.js基础)/04-webpack_Loader使用/node_modules/require-main-filename
3056762376@qq.com 3aeda6d214 changes 2022-11-20 18:09:32 +08:00
..
.npmignore changes 2022-11-20 18:09:32 +08:00
.travis.yml changes 2022-11-20 18:09:32 +08:00
LICENSE.txt changes 2022-11-20 18:09:32 +08:00
README.md changes 2022-11-20 18:09:32 +08:00
index.js changes 2022-11-20 18:09:32 +08:00
package.json changes 2022-11-20 18:09:32 +08:00
test.js changes 2022-11-20 18:09:32 +08:00

README.md

require-main-filename

Build Status Coverage Status NPM version

require.main.filename is great for figuring out the entry point for the current application. This can be combined with a module like pkg-conf to, as if by magic, load top-level configuration.

Unfortunately, require.main.filename sometimes fails when an application is executed with an alternative process manager, e.g., iisnode.

require-main-filename is a shim that addresses this problem.

Usage

var main = require('require-main-filename')()
// use main as an alternative to require.main.filename.

License

ISC