1

我正在开发一个服务器端 node.js 应用程序,并使用具有以下配置的 webpack 2 生成一个包:

{
  entry: [
    './api/server.js'
  ],
  target: 'node',
  devtool: 'source-map',
  context: path.resolve(__dirname, '..'),
  output: {
    path: path.resolve(__dirname, '..', 'build', 'server'),
    filename: 'server.js'
  },

  resolve: {
    modules: ['node_modules'],
    extensions: ['.js']
  },

  module: {
    loaders: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: 'babel-loader',
        query: {
          presets: [
            ['es2015', { modules: false }],
            'stage-0'
          ],
          plugins: [
            'transform-object-rest-spread',
            'babel-plugin-transform-decorators-legacy',
            'transform-class-properties'
          ]
        }
      },
      {
        test: /\.json$/,
        loader: 'json-loader'
      }
    ]
  }
}

我的依赖项之一是 node-argon2 库,我将这个库导入到server.js. webpack 生成的打包文件包含了 argon2 代码(例如):

,
/* 62 */
/* unknown exports provided */
/* all exports used */
/*!*MYPROJECT/~/argon2/index.js ***!!*\
/***/ function(module, exports, __webpack_require__) {

"use strict";
eval("'use strict'\nconst crypto....

在这种情况下,我收到以下错误:

(node:23259) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Path must be a string. Received undefined
(node:23259) DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

server.js我以仅导入 argon2 模块的最小值重现了上述错误。考虑到这可能与 argon2 库调用本机代码的事实有关,我将模块标记为外部并将其在 webpack 构建文件中的条目替换为:

/***/ },
/* 163 */
/* unknown exports provided */
/* all exports used */
/*!*************************!*\
  !*** external "argon2" ***!
  \*************************/
/***/ function(module, exports) {

eval("module.exports = require(\"argon2\");");

这现在可以正常工作,没有任何错误。清楚地标记这个外部是不正确的(如果没有上述修改,根本不会工作)。我正在寻找配置 argon2 模块以产生与上述类似的条目。我注意到这与 , 的方式相匹配,string_decoder并且捆绑中定义了一些其他模块:ttyzlip

/***/ },
/* 164 */
/* unknown exports provided */
/* all exports used */
/*!*********************************!*\
  !*** external "string_decoder" ***!
  \*********************************/
/***/ function(module, exports) {

eval("module.exports = require(\"string_decoder\");...")

/***/ },
/* 165 */
/* unknown exports provided */
/* all exports used */
/*!**********************!*\
  !*** external "tty" ***!
  \**********************/
/***/ function(module, exports) {

eval("module.exports = require(\"tty\");
4

0 回答 0