2

我把这个问题提炼成一个简单的测试。我正在使用节点“config”模块为我的应用程序定义配置值。Pkg 不会抱怨构建,但会在运行时显示以下消息。我错过了什么吗?

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);

我在本地“config”目录中有一个 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"
}
4

2 回答 2

0

我遇到了同样的问题,这是因为我的配置文件被添加到.gitignore- 一旦我从那里删除它,它就像一个魅力!

于 2018-08-26T22:56:09.647 回答
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';
}

我尝试直接链接到配置模块,但之后它开始抱怨它在我的配置文件夹中找不到和文件。这对我来说是一种解决方法。

于 2020-01-06T14:30:48.307 回答