angular-cli在运行时会产生语法错误

时间:2016-10-27 08:19:53

标签: angularjs angular-cli

我正在尝试使用angular-cli项目,但是当我运行

时出现此错误
$ ng new scotchy-scotch
C:\Users\....\AppData\Roaming\nvm\v0.12.10\node_modules\angular-cli\bin\ng:7
const resolve = require('resolve');
^^^^^
SyntaxError: Use of const in strict mode.
    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

1 个答案:

答案 0 :(得分:2)

来自angular-cli github page

  

先决条件:

     

CLI和生成的项目都有依赖项   需要Node 4或更高版本以及NPM 3或更高版本。

const是ES6(ECMAscript 2015)的一部分,默认情况下在nodejs v0.12(您使用的是哪一个)中未启用。 Related stackoverflow article