我已经将这个问题提炼成一个简单的测试。我正在使用节点" config"模块,用于定义我的应用程序的配置值。 Pkg不会在构建时抱怨,而是在运行时使用以下消息进行barfs。我错过了什么吗?
jim-macbookpro:~/development/node/pkgtest$ ./pkgtest-macos
pkg/prelude/bootstrap.js:1172
throw error;
^
Error: Cannot find module 'config'
1) If you want to compile the package/file into executable, please pay attention to compilation warnings and specify a literal in 'require' call. 2) If you don't want to compile the package/file into executable and want to 'require' it from filesystem (likely plugin), specify an absolute path in 'require' call using process.cwd() or process.execPath.
at Function.Module._resolveFilename (module.js:540:15)
at Function.Module._resolveFilename (pkg/prelude/bootstrap.js:1269:46)
at Function.Module._load (module.js:470:25)
at Module.require (module.js:583:17)
at Module.require (pkg/prelude/bootstrap.js:1153:31)
at require (internal/module.js:11:18)
at Object.<anonymous> (/snapshot/pkgtest/index.js:1:78)
at Module._compile (pkg/prelude/bootstrap.js:1243:22)
at Object.Module._extensions..js (module.js:650:10)
at Module.load (module.js:558:32)
index.js很简单:
const config = require('config');
console.log('yo:', config.message);
我在本地&#39;配置&#39;中有一个default.json。目录:
{
"message": "whodapunk?"
}
我的package.json,了解它的价值:
{
"name": "pkgtest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"config": "^1.30.0"
},
"bin": "index.js"
}
答案 0 :(得分:0)
我遇到了同样的问题,这是因为我的配置文件被添加到了.gitignore
-一旦我从那里删除它,它就像一个魅力!
答案 1 :(得分:0)
我只是遇到了同样的问题。但是,不是一个非常漂亮的解决方案,我设法找到一种解决方法。
调用pkg时,我未设置e NODE_ENV。然后在入口点检查是否设置了NODE_ENV。如果没有,我在那里定义变量。
let port = null;
let db = null;
let name = null;
if (process.env.NODE_ENV) {
const config = require('config');
port = config.get('port');
db = config.get('database');
name = config.get('name');
} else {
port = 3000;
db = 'mongodb://localhost:27017/production';
name = 'Server Production';
}
我尝试直接链接到config模块,但此后它开始抱怨它找不到config文件夹中的文件。这对我来说是可行的。