check the wiki for class materials an supporting resources
Each week there will be 2 projects:
The structure of a weekly projects is that of a create-react-app. This is boilerplate, a set of tools and a predefined structure to start writing React fast. The first project (week-1-project) will teach you all about how it works.
Week 1 Tutorial: a weather app
Make sure you have Node installed. If not https://nodejs.org/en/download/.
Yarn is a package manager. Similar to npm. As this package manager is recommended by create-react-app we will use it throughout the exercises.
- Install yarn https://yarnpkg.com/en/docs/install
- After yarn is installed navigate to the root of this project and run
yarn install
Yarn will install the dependencies defined in package.json.
- Navigate to the a week directory (e.g.
week-1-project
) in your document explorer. - Open the README.md file.