我正在使用无服务器来运行lambda函数。
在执行sls invoke local --function myFunction
exports.myFunction = async (event) => {
^
SyntaxError: Unexpected token (
at createScript (vm.js:56:10)
at Object.runInThisContext (vm.js:97:10)
at Module._compile (module.js:542:28)
at Object.Module._extensions..js (module.js:579:10)
无服务器配置看起来像这样。
serverless.yaml
service: myService
provider:
name: aws
runtime: nodejs8.10
stage: ${opt:stage, 'dev'}
region: eu-west-1
environment:
CUSTOM_ENV: ${opt:stage, 'dev'}
functions:
myFunction:
handler: index.myFunction
events:
- http:
cors: true
path: /{proxy+}
method: POST
plugins:
- serverless-offline
- serverless-webpack
webpack.config.js
const slsw = require("serverless-webpack");
const nodeExternals = require("webpack-node-externals");
const path = require('path');
module.exports = {
entry: slsw.lib.entries,
target: "node",
// Generate sourcemaps for proper error messages
devtool: 'source-map',
mode: slsw.lib.webpack.isLocal ? "development" : "production",
optimization: {
// We no not want to minimize our code.
minimize: false
},
performance: {
// Turn off size warnings for entry points
hints: false
},
};
运行命令sls offline start
在功能路线被击中之前,一切似乎都能正常工作。
答案 0 :(得分:7)
sls invoke local
通过模拟AWS Lambda环境在本地运行您的代码。因此,请确保在您的开发计算机中安装节点8 以上,以便异步等待本机支持。在本地运行node --version
以检查您的节点开发版本。
答案 1 :(得分:0)
请确保您正在estlintrc.js
上使用ECMA脚本8。
然后它将正常工作。