无法安装 babel-cli

Can't install babel-cli

我在尝试 运行:

时遇到错误

$babel-node ./server.js

The CLI has been moved into the package babel-cli.

$ npm install -g babel-cli

当我安装它并再次 运行 它时,它再次要求它。 有人遇到过这种情况吗?似乎无法前进。

>

 npm ERR! Darwin 15.0.0
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "run" "start"
npm ERR! node v5.1.0
npm ERR! npm  v3.5.0
npm ERR! code ELIFECYCLE
npm ERR! relay-starter-kit@0.1.0 start: `babel-node ./server.js`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the relay-starter-kit@0.1.0 start script 'babel-node ./server.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the relay-starter-kit package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     babel-node ./server.js
npm ERR! You can get their info via:
npm ERR!     npm owner ls relay-starter-kit
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/diogo/Projects/cf-ophite/npm-debug.log

Babel 版本 6 split some packages

  1. 您尝试打开新终端 window 之后 npm install -g babel-cli ?
  2. 您也可以安装版本 5 并像以前一样工作: npm install -g babel@5
  3. 如果在升级节点后发生这种情况,请在您的项目目录中尝试npm rebuild
  4. 另一种解决方法是删除node_modules文件夹,然后再次执行npm install