运行节点4.4.7时接收严格模式警告

时间:2016-09-23 18:29:25

标签: javascript node.js ecmascript-6 let strict

我相信node v4.4.7支持ES6。但是节点拒绝编译我的程序:

user1-$ node -v
v4.4.7

user1-$ node index.js
event-service.js:85
      let sql = 'SELECT * FROM group_events where id = ?';
      ^^^

SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode

我想避免'使用严格'。还有其他选择吗?

1 个答案:

答案 0 :(得分:2)

运行node --use_strict index.js以强制使用严格模式