Assuming you have a version of node installed, install nvm and then close & reopen your terminal.
Install the latest stable version of node (you need Node >= 6):
nvm install nodeFork the repo and create a local clone (be sure to replace <YOUR-USERNAME> with your own):
git clone https://github.com/<YOUR-USERNAME>/react-workshop.gitChange to end/ directory:
cd react-workshop/endInstall all of the dependencies (yarn is preferred):
# Yarn
yarn
# ...or NPM
npm installStart API server (running at http://localhost:9090/):
# Yarn
yarn run start:api
# ...or NPM
npm run start:apiIn a separate terminal window/tab, making sure you're still in the end/ directory, start the app:
# Yarn
yarn start
# ...or NPM
npm startAfter the app is initially built, a new browser window should open up at http://localhost:3000/.