安装cnpm


参考阿里淘宝npm镜像,网址:https://developer.aliyun.com/mirror/NPM?from=tnpm

npm配置全局下载位置和cache位置:

  1. # 查看全局下载路径
  2. npm config get prefix
  3. # 配置全局下载路径
  4. npm config set prefix "E:\NodeJS_WorkSpace\npm\npm_global"
  5. # 将全局下载路径设置到PATH环境变量,以便直接使用cnpm、ng等下载下来的命令
  6. # 查看cache路径
  7. npm config get cache
  8. # 配置cache路径
  9. npm config set cache "E:\NodeJS_WorkSpace\npm\npm_cache"
  10. # 查看全局安装
  11. npm ls -g -depth 0
  12. # 卸载angular
  13. npm uninstall -g @angular/cli
  14. # 查看所有配置
  15. npm config list
  16. # 修改registry(默认为https://registry.npmjs.org/)
  17. npm config set registry https://registry.npm.taobao.org
  18. # 本地私仓路径(group)
  19. # http://192.168.29.141:8081/repository/npm-group/
  20. # 本地私仓路径(hosted)
  21. # http://192.168.29.141:8081/repository/npm-hosted/
  22. # 本地私仓路径(taobaoProxy)
  23. # http://192.168.29.141:8081/repository/npm-taobao/
  24. # regitry修改为原来的资源库
  25. npm config set registry https://registry.npmjs.org/

使用命令行安装定制的cnpm

  1. npm install -g cnpm --registry=https://registry.npm.taobao.org

安装angular脚手架

使用 npmcnpm 命令安装angular/cli

  1. npm install -g @angular/cli
  2. ## 或者
  3. cnpm install -g @angular/cli
  4. ## 安装完成后,通过查看版本号检查是否安装成功
  5. # 在项目外使用ng v得到的是全局的angular脚手架版本
  6. # 在项目文件夹中使用ng v得到的是该项目的angluar脚手架和angular及其他依赖的版本
  7. ng v