2016-10-27 9 views
1

私は、角-CLI github pageから角度-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 

答えて

2

を実行したときに、私はこのエラーを取得するが、角度-CLIプロジェクトを使用しようとしています:

前提条件:

CLIと生成されたプロジェクトの両方に、NPM 3以上のノード4以降が必要な依存関係 があります。

constは、node6s v0.12(どちらが使用する)でデフォルトで有効になっていないES6(ECMAscript 2015)の一部です。 Related stackoverflow article

関連する問題