启动 AWS Serverless Framework 无法安装入门示例
Starting AWS Serverless Framework can't install starter sample
我想 运行 serverless framework 用于我的 AWS 解决方案。
但是示例启动器没有正确安装,为什么?
$serverless project install serverless-starter
/usr/local/lib/node_modules/serverless/bin/serverless:5
let argv = require('minimist')(process.argv.slice(2));
^^^
SyntaxError: Unexpected strict mode reserved word
at exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:443:25)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
at node.js:814:3
正如在 中解决的那样,当使用旧的 Node 版本并且无服务器需要 Node 版本 4.x 或更高版本时会出现此问题。
在这种情况下,let
声明未被识别,因为它是 ES6 规范并且支持仅在 Node 4 (Kangax table) 中开始。
我想 运行 serverless framework 用于我的 AWS 解决方案。
但是示例启动器没有正确安装,为什么?
$serverless project install serverless-starter
/usr/local/lib/node_modules/serverless/bin/serverless:5
let argv = require('minimist')(process.argv.slice(2));
^^^
SyntaxError: Unexpected strict mode reserved word
at exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:443:25)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
at node.js:814:3
正如在
在这种情况下,let
声明未被识别,因为它是 ES6 规范并且支持仅在 Node 4 (Kangax table) 中开始。