換電腦時環境配置常見問題及一些git設定
新電腦配置環境時的問題:
Node找不到,但重灌時又提示有node:或者node報錯Error: No such keg: /usr/local/Cellar/node
brew cleanup
brew link node
brew uninstall node
brew uninstall --force node
brew install node
安裝nvm命令(node版本管理工具)
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
按完重啟iterm
安裝N(node版本管理工具)
$ sudo npm install -g n
brew安裝命令:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Oh my zsh. git外掛安裝命令
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
git設定別名
我們只需要敲一行命令,告訴Git,以後st就表示status:
git config --global alias
git config --global alias.c commit
git config --global alias.ck checkout
git config --global alias.a add
新電腦模擬器報錯No bundle URL present
appdelegate.m修改下成程式碼
jsCodeLocation = [NSURL URLWithString:@"http://127.0.0.1:8081/index.bundle?platform=ios&dev=false"];
新電腦報錯單元測試報錯 jest.mock() is not allowed to reference any out-of-scope variables
Node版本問題 降到v8.12.0或者v6.11.3
如果node版本切換了沒有用請使用:
nvm alias default v6.11.3 來修改預設node版本