In this course, we will walk through everything you need to know to develop applications with React. From the beginner through testing and deployment of our first app. This repository contains the source code and extra content for the course. Course literature is available through ordinary channels.
Each part contains a full React application, following the same procedure used to create the course. Most parts can be run using the same basic steps (and for the part that require a bit more work, please attend our live workshops).
The steps to install and run any of the course projects is as follows:
# install the dependencies
yarn install
# start the project
yarn start
or with Node Package Manager
# install the dependencies
npm install
# start the project
npm start
Since all of the days are built using the fantastic create-react-app tool, all of the commands are available from that project in every day.
This ReactJS course was written and developed based on the Fullstack React book. In the book they cover many more projects similar to ours. The book will walk through each line of code, explain why it's there and how it works.