开发环境配置
# 版本管理
如果已经有用.exe安装的,请先卸载掉;再通过nvm安装nodejs, 管理node版本;参考nvm (opens new window)安装对应系统的版本;
ps: win系统安装时一定要设置安装的路径上不能有空格
nvm -h
nvm install 10.18 #nodejs版本v10.18版本;
nvm use 10
nvm alias default 10
nvm ls
1
2
3
4
5
2
3
4
5
# 源管理
# nrm管理npm源
sudo npm i -g nrm
nrm ls
nrm use taobao
1
2
3
2
3
部分内部库,要用内部私服;(可先忽略)
nrm use bdp
nrm add bdp http://172.21.64.25:7373/
1
2
2
bdp门户依赖安装:
ssh配置
ssh-keygen -t rsa -C "xxx@foxmail.com"
cat ./ssh/id_rsa.pub
ssh -T git@xxx.com
#ssh -T git@bitbucket.org
#ssh -T git@github.com
1
2
3
4
5
2
3
4
5
git用户信息配置
git config --global user.name "samy"
git config --global user.email "samy@xx.com"
1
2
2
pkg配置
"bdpcloud": "file:../bdp-cloud-react",
"bdpcloud": "^6.0.0-alpha.11",
"bdpcloud": "git+ssh://git@gitlab.xxx.com:zsmart-bdp/bdp-cloud-react.git#develop",
1
2
3
2
3
单独安装依赖
#ssh方式
npm i -S bdpcloud@git+ssh://git@gitlab.xxx.com:zsmart-bdp/bdp-cloud-react.git#V6.5.0
#http方式; 不能配置ssh时,用这种方式;
# npm i git+https://username:password@git.example.com/path/reposity#master
npm i -S bdpcloud@git+http://userCode:pwd@gitlab.xxx.com/zsmart-bdp/bdp-cloud-react.git#V6.5.0
1
2
3
4
5
2
3
4
5
# yrm管理yarn源
sudo npm i -g yrm
yrm ls
yrm use taobao
1
2
3
2
3
# 工具
# 终端工具
Win:Cmder
添加 cmder 到右键菜单:在管理员权限的终端输入以下语句即可: Cmder.exe /REGISTER ALL
Mac系统:iTerm2
配合ok my zsh
使用
# Git工具
Git
命令行
SourceTree
# 开发工具
推荐用vs code
开发
配套插件
# 测试及开发环境
详见系统链接页面
上次更新: 2023/11/17, 05:08:17