nodejs 全局环境配置 Angular-CLI配置 Git 环境配置

1、nodejs 配置
测试node:
   node -v
   npm -v
设置全局npm包安装路径:
npm config set prefix "D:\nodejs\node_global"
npm config set cache "D:\nodejs\node_cahce"

在用户变量和系统变量Path中都加入
D:\nodejs\node_cahce
D:\nodejs\node_global
新建系统变量:
NODE_PATH  :   D:\nodejs\node_global\node_modules
设置淘宝镜像
npm config set registry https://registry.npm.taobao.org
npm install -g cnpm --registry=https://registry.npm.taobao.org


2、Angular-CLI安装
全局安装typescript
npm install -g typescript 
安装Angular CLI
npm install -g @angular/cli
测试安装:
   ng -v       (低版本测试)
   ng version  (高版本测试)

3、GIT配置,在git bash 窗口运行
全局邮箱:
 git config --global user.email [email protected]
全局用户名,建议用姓名
git config --global user.name "张博"
保存用户提交用户名和密码,不用每次都提交输入用户名和密码
git config --global credential.helper store
 

你可能感兴趣的:(技术)