最新回答 / 小狮
It appears you have a much older version of the CLI (still using the package name angular-cli)You will want to remove that package and install the current version...
npm uninstall angular-cli -g npm install @angular/cli -g
2018-07-24
最新回答 / 慕前端8664132
https://stackoverflow.com/questions/49810580/error-local-workspace-file-angular-json-could-not-be-found试试这个吧,用谷歌翻译下就行。
2018-06-06
最赞回答 / 飘飞的夏秋
使用 yarn 来代替 npm 安装。比如:ng new demo --skip-install使用yarn安装依赖包(安装yarn:cnpm install -g yarn)进入demo目录运行 yarn然后运行 ng serve
2018-05-06
最新回答 / weibo_素颜养眼_0
在开始工作之前,我们必须设置好开发环境。如果你的机器上还没有Node.js®和npm,请先安装它们。请先在终端/控制台窗口中运行命令 node -v 和 npm -v, 来验证一下你正在运行 node 6.9.x 和 npm 3.x.x 以上的版本。 更老的版本可能会出现错误,更新的版本则没问题。然后全局安装 Angular CLI 。ng new my-appcd my-appng serve
2018-02-09