What did you do when you got new MBP?
Me: open Safari, go to this site: iterm2.com, install iTerm2! 👨💻 #developerlyfe
What’s next? Oh My ZSH!
xcode-select: note: no developer tools were found at ‘/Applications/Xcode.app’, requesting install. Choose an option in the dialog to download the command line developer tools.
Error: git clone of oh-my-zsh repo failed
🙄
Install Oh My ZSH again, voila!
Are you a node.js developer? Then you should install nvm: a simple bash script to manage multiple active node.js versions.
➜ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
Reload the terminal.
➜ source ~/.zshrc
Try nvm syntax.
➜ nvm list
N/A
node -> stable (-> N/A) (default)
iojs -> N/A (default)
There is no node yet but at least we know that nvm is installed 🙌
Install node ‘latest’ version: Dubnium.
➜ nvm install v10.13.0
Verify installation.
➜ node -v
v10.13.0
➜ npm -v
6.4.1
Another tools we’ll need is Homebrew: the missing package manager for macOS.
➜ /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
Verify brew installation by installing yarn. 🤓 Exclude Node.js since we already installed it.
➜ brew install yarn –without-node
Ready to rock?! Try this cool project: rnw-github.
➜ git clone https://github.com/haruelrovix/rnw-github.git
➜ cd rnw-github
➜ yarn
➜ yarn web
Leave a Comment