我正在使用ES6,babel和Webpack 2捆绑AWS Lambda。然后我使用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一起工作。注:这是Webpack 2
非常感谢...
答案 0 :(得分:6)
要解决此问题,我必须指定一个库属性并将libraryTarget更改为commonjs2。 webpack.config.js文件输出现在看起来像这样 -
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'main.js',
library: 'main',
libraryTarget: 'commonjs2'
},
答案 1 :(得分:0)
我也遇到了这个问题。但是,我相信我的情况是相反的情况或SamBrick的看法。我从使用babel进行ES6的编译开始,以在lambda / node 6.10上运行,而不再进行编译并以lambda / node 8.10为目标。删除library
字段并更改libraryTarget: 'commonjs'
对我来说解决了这个问题。
此人的道具:https://gist.github.com/nirnanaaa/d7f40deb38f1cf7f931dc7ef0c582bf0