angular-cli 在 运行 时产生语法错误
angular-cli produces syntax error when ran
我正在尝试使用 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
来自 angular-cli github page:
Prerequisites:
Both the CLI and generated project have dependencies
that require Node 4 or higher, together with NPM 3 or higher.
const
是 ES6(ECMAscript 2015) 的一部分,它在 nodejs v0.12(您使用的是哪个版本)中默认未启用。 Related Whosebug article
我正在尝试使用 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
来自 angular-cli github page:
Prerequisites:
Both the CLI and generated project have dependencies that require Node 4 or higher, together with NPM 3 or higher.
const
是 ES6(ECMAscript 2015) 的一部分,它在 nodejs v0.12(您使用的是哪个版本)中默认未启用。 Related Whosebug article