我相信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
我想避免'使用严格'。还有其他选择吗?
答案 0 :(得分:2)
运行node --use_strict index.js
以强制使用严格模式