Webpack 和 AWS Lambda 问题 - 模块上缺少处理程序

Webpack and AWS Lambda issue - handler missing on module

我正在使用 ES6、babel 和 Webpack 2 来捆绑 AWS Lambda。然后我 running/testing 使用本地 AWS SAM。当我点击 api -

时出现以下错误
Handler 'handler' missing on module 'dist/main'

这是我的 webpack.config.js -

const path = require('path');

module.exports = {
  entry: './index.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'main.js',
    libraryTarget: 'commonjs'
  },
  module: {
    rules: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: 'babel-loader',
        options: {
          plugins: [require('babel-plugin-transform-flow-strip-types')],
          presets: [
            [
              'env',
              {
                target: { node: 6.10 }, // Node version on AWS Lambda
                useBuiltIns: false,
                loose: false,
                exclude: [],
                debug: false
              },
            ],
          ],
        },
      }
    ],
  }
};

这里是编译后的片段 main.js -

/***/ (function(module, exports, __webpack_require__) {

"use strict";

Object.defineProperty(exports, "__esModule", {
    value: true
});
exports.handler = handler;

var _amazonCognitoIdentityJs = __webpack_require__(60);

var _aws_profile = __webpack_require__(290);

// A signin Lambda function
function handler(event, context, callback) {
        switch (event.httpMethod) {
        case "GET":

一点背景....这是一个 Lambda,我最初不是在 ES6 中编写的,也没有使用 Webpack 进行捆绑,但它正在运行。我现在需要它在 ES6 中并与 Webpack 一起工作。 N.B。这是 Webpack 2

非常感谢...

为了解决这个问题,我必须指定一个库 属性 并将 libraryTarget 更改为 commonjs2。 webpack.config.js 文件输出现在看起来像这样 -

output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'main.js',
    library: 'main',
    libraryTarget: 'commonjs2'
  },

我也运行关注这个问题。但是,我相信我的情况与 SamBrick 所分享的相反。我从 t运行spiling ES6 with babel 到 运行 on lambda/node 6.10 再到没有 t运行spiling 和 targeting lambda/node 8.10。删除 library 字段并更改为 libraryTarget: 'commonjs' 解决了我的问题。

对这个人的支持:https://gist.github.com/nirnanaaa/d7f40deb38f1cf7f931dc7ef0c582bf0