今天我正在尝试使用 Angular2(模板https://akveo.github.io)。根据安装指南,我运行了以下命令。
我已经安装了Node.js v6.9.1
。
npm install
——工作得很好。npm server
--失败并出现以下错误。E:\........\node_modules\script-ext-html-webpack-plugin\index.js:3 const INLINE = 'inline'; ^^^^^ SyntaxError: Use of const in strict mode. at exports.runInThisContext (vm.js:73:16) at Module._compile (module.js:443:25)
经过多次随机搜索并未能解决它,我决定冷静地考虑一下。对我来说,这似乎是一个问题ES2015/ES6
。包script-ext-html-webpack-plugin
使用const
变量,这是一个ES2016
特性。但是系统无法解决。
这个问题也可能出现在任何包中,比如hapi
,selinium
等等。但我猜一切都应该有相同的解决方案。
我在上述网站的安装指南上尝试了许多相关命令,但没有任何效果并以同样的错误结束。我也有很多人在网上遇到过同样的问题,但没有具体的答案。谁能帮帮我?