In this tutorial, we’re going to build a web app using using Meteor and React. This will be a simplified version of a more advanced app we'll build in a two-day workshop on full-stack web development with Meteor and React.
##Prerequisites
- Basic knowledge of HTML, JavaScript, and use of a command line terminal.
- A laptop with a code editor of your choice. We’ll be using Sublime Text.
- Be sure to install Meteor. We’ll be using Mac OSX. However, Meteor is available for Windows and Linux as well.
Each step in the tutorial has a corresponding branch in the github repo. I highly recommend that you create the app on your own, but if you should get stuck, you can always check out the branch from the previous step to get caught up.
- Clone the tutorial:
git clone git@github.com:CodeChron/fullstack-js-preview.git
- Cd into the tutorial project:
cd dir name
- Pull down all branches:
git fetch --all
- View available branches:
git branch -a
- Check out a specific branch:
git checkout origin/[branchname]
eggit checkout origin/setup