前端环境配置

前端环境配置

安装node

  • 下载地址 http://nodejs.cn/download/current/
    • 安装 LTS 版 直接下一步
  • 安装后测试成功
    • node --version
    • npm --version
  • npm 安装成功后 配置 nmp 淘宝源
// powshall 打开执行
npm config set registry http://registry.npm.taobao.org/
// 检查是否更换成功
npm config get registry

安装 VS Code

  • 下载地址 https://code.visualstudio.com/Download
    • 安装 windows

安装 git

  • https://git-scm.com/downloads
    1. 安装后测试
     git --version
    1. 查看git配置
git config --list 
  • 3.配置使用git仓库的人员姓名和 email
git config --global user.name 'chuwx'
git config --global user.email '[email protected]'
    1. 克隆项目代码
git clone SSH 地址
    1. 问我要基于哪个分支开发 vscode 左下角 点击去
    1. 创建自己的分支(问下咱们创建 分支 有命名要求吗)
    1. 随便改改点代码
git add .
git commit -m "test"
git push (git push --set-upstream origin cccc)

vs code 插件

  • Vetur v0.35.0
  • Gitlens v11.6.1
  • live Server v5.6.1
  • ESLint v2.2.2

安装谷歌浏览器

  • http://chrome.hrbmby.top/browser.html
  • 安装插件 vue-devtool
    • chrome://extensions/

github 配置

  • 地址 https://github.com/settings/keys

    1. 创建 id_rsa.pub
ssh-keygen -t rsa -C "[email protected]"
    1. 我的电脑 C:\Users\XXX.ssh\id_rsa.pub
    1. 在当前文件夹下 打开 powershall
cat id_rsa.pub 
    1. 拿到 id_rsa.pub 后 粘贴到 github --> settings--> SSH and GPG keys
    1. 如果是 gitlab settings--> SSH keys 直接粘贴

你可能感兴趣的:(前端环境配置)