美文网首页
angular7.x脚手架的搭建

angular7.x脚手架的搭建

作者: 骄阳似我888 | 来源:发表于2019-03-11 20:52 被阅读0次


Angular 环境搭建

1.安装nodejs

    电脑上必须是最新的nodejs的稳定版本,可以使用nvm管理node的版本。

2.安装cnpm

npm 可能安装失败建议先用 npm 安装一下 cnpm 用淘宝镜像安装

淘宝 NPM 镜像

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

3.使用 npm/cnpm 命令安装 angular/cli

npm install -g @angular/cli 或者 cnpm install -g @angular/cli

4.创建项目

ng new 项目名称

直接安装:

ng new angulardemo

如果要跳过 npm i 安装:

ng new ngulardemo --skip-install

5.运行项目

cd demo

ng serve --open

相关文章

网友评论

      本文标题:angular7.x脚手架的搭建

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