iTerm2 is a replacement for the MacOS Terminal application and comes with an impressive set of features. Download and install iTerm2 from here.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install git wget
brew install tree # optional package for directory listingStarting MacOS 10.15 (Catalina), the default shell is zsh. If your default shell is not zsh, I highly recommend changing it to zsh.
Execute the following command in your terminal window to find out your default shell:
echo $SHELLIf you see something other than /bin/zsh, then zsh is not your default shell.
Change it using the following command:
chsh -s /bin/zshNow close the terminal and reopen it. Type echo $SHELL to make sure that zsh
is the default.
Oh My Zsh is a delightful framework for managing your Zsh configuration. It comes bundled with thousands of helpful functions, helpers, plugins and themes. Enter the following command in your shell to install Oh My Zsh:
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"The installation script creates a backup of your .zshrc file, and then replaces it with its own version. If you had any important configuration in your original .zshrc, copy it over to your new .zshrc.
Node Version Manager (nvm) is a bash script to manage multiple node.js versions. It is better than using the Node.js installer or Homebrew (see this article).
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bashNow install the latest LTS version of Node.js
nvm install --lts
source "$HOME/.zshrc"
node -v # prints v14.17.6 as of this writingIf you get the error nvm: command not found, then follow the instructions
under
Troubleshooting on macOS.
Now install Yarn.
curl -o- -L https://yarnpkg.com/install.sh | bash
source "$HOME/.zshrc"
yarn -v # should print a version number like v1.22.4Note: Do not use Homebrew to install Yarn because we did not use it to install node. See this issue.
At this point, the end of your .zshrc file should look something like this. Make sure that each section is in the correct order.
# Node Version Manager (NVM)
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# Yarn
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"Add the following command shortcuts at the end of .zshrc
# ----- Command Shortcuts -----
# preferred 'ls' implementation
alias ll='ls -FGlAhp'
# recursive directory listing
alias lr='ls -R | grep ":$" | sed -e '\''s/:$//'\'' -e '\''s/[^-][^\/]*\//--/g'\'' -e '\''s/^/ /'\'' -e '\''s/-/|/'\'' | less'
# better directory listing
alias ltree='tree --dirsfirst -F -a'
# preferred 'ps' implementation
alias pc='ps -e -o user,pid,comm'Clone the Accelerated News repo wherever you keep projects and verify that you can build and run the app. I recommend keeping all your projects under ~/projects.
cd ~/projects
git clone https://github.com/PublicisSapient/accelerated-news.git
cd accelerated-news
yarn
yarn startCongratulations! Your machine is now certified to build React apps!
You may now install an IDE like Visual Studio Code (free) or WebStorm (paid).
Here are some useful, Visual Studio Code extensions: