美文网首页
2018-10-19 angular2+安装及常用npm指令

2018-10-19 angular2+安装及常用npm指令

作者: 鼠小张 | 来源:发表于2018-10-19 15:34 被阅读20次

    一、angular2+安装步骤

    1.node -v //检查版本 大于6.9
    
    2.npm -v  //检查npm版本 大于3.0
    
    3.npm install -g cnpm --registry=https://registry.npm.taobao.org //安装npm淘宝镜像,不易报错
    
    4.npm install -g @angular/cli  //安装ng最新版本
    
    5.npm uninstall -g @angular/cli //卸载之前版本
    
    6.npm cache clean //清除缓存
    
    7.npm install -g@angular/cli@4.4.7 //安装指定4版本
    

    二、angular2+ npm常用指令

    ng generate class my-new-class // 新建 class
    
    ng generate component my-new-component      // 新建组件
    
    ng generate directive my-new-directive      // 新建指令
    
    ng generate enum my-new-enum                // 新建枚举
    
    ng generate module my-new-module            // 新建模块
    
    ng generate pipe my-new-pipe                // 新建管道
    
    ng generate service my-new-service          // 新建服务
    
    ng g cl my-new-class        // 新建 class
    
    ng g c my-new-component    // 新建组件
    
    ng g d my-new-directive    // 新建指令
    
    ng g e my-new-enum          // 新建枚举
    
    ng g m my-new-module        // 新建模块
    
    ng g p my-new-pipe          // 新建管道
    
    ng g s my-new-service      // 新建服务
    

    相关文章

      网友评论

          本文标题:2018-10-19 angular2+安装及常用npm指令

          本文链接:https://www.haomeiwen.com/subject/woayzftx.html