console.log

What did you do when you got new MBP?

Me: open Safari, go to this site: iterm2.com, install iTerm2! 👨‍💻 #developerlyfe

iterm2

iTerm2 is a terminal emulator for macOS that does amazing things

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

🙄

Downloading software

Installing x-code developer tools

Install Oh My ZSH again, voila!

Your terminal never felt this good before

Your terminal never felt this good before

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

gitphone

gitphone: GitHub repository checker for your smartphone 🙆‍♂️

Leave a Comment

Capcay *