ng version
ng new --help
兄弟 , 咋解决的
我也一直遇到这个问题,但关键是我后来只执行ng g service test,也没手动注册也没啥问题
angular 不需要对准node npm版本,只要不是很低都可以呀
应该是 ng build --prod
正确写法import {TestService} from './test.service'
不需要加后缀 .ts
才刚开始学习,具体情况不清楚,想学就不要怕难呀!相信自己,慢慢进步的啦!
为啥还要用angularjs呢。。。1的话都是直接页面引入的。
你是一直卡在这吧?你上网搜下,采用yarn来装cli就不卡在95%了
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
https://stackoverflow.com/questions/49810580/error-local-workspace-file-angular-json-could-not-be-found
试试这个吧,用谷歌翻译下就行。
遇到了同样的问题,npm i也不行
打包没完成,服务没起起来,是不是有报错
6.x以后就用angular.json替代了angular-cli.json
使用 yarn 来代替 npm 安装。
比如:
ng new demo --skip-install
使用yarn安装依赖包(安装yarn:cnpm install -g yarn)
进入demo目录运行 yarn
然后运行 ng serve
截图啊
可以下载个Git,安装完成后,在目录下面点击右键,选择Git Bash Here, 然后就可以使用vim了
可以用,装个Git完成一样
在开始工作之前,我们必须设置好开发环境。
如果你的机器上还没有Node.js®和npm,请先安装它们。
请先在终端/控制台窗口中运行命令 node -v 和 npm -v, 来验证一下你正在运行 node 6.9.x 和 npm 3.x.x 以上的版本。 更老的版本可能会出现错误,更新的版本则没问题。
然后全局安装 Angular CLI 。
ng new my-app
cd my-app
ng serve
完全可以
npm install -g @angular/cli@1.4.10 (这个是angular4,可以在@后面写需要的版本号)