Skip to content

A step-by-step workshop for learning React fundamentals.

License

Notifications You must be signed in to change notification settings

BenAtEventbrite/react-workshop

 
 

Repository files navigation

React Fundamentals Workshop by Ben Ilegbodu

Maintenance Status Build Status license PRs Welcome

Watch on GitHub Star on GitHub Tweet

A step-by-step workshop for learning React fundamentals. Best if accompanied with live facilitation. 🙂

Many thanks!

To run completed app

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 node

Fork 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.git

Change to end directory:

cd react-workshop/end

Install all of the dependencies (yarn is preferred):

# Yarn
yarn

# NPM
npm install

Start API server (running at http://localhost:9090/):

# Yarn
yarn run start:api

# NPM
npm run start:api

In a separate terminal window/tab, start the app:

# Yarn
yarn start

# NPM
npm start

After the app is initially built, a new browser window should open up at http://localhost:3000/.

Exercises

All of the exercises make use of ES6 so you may need to brush up on the new JavaScript features if they are not familiar. Each step in the workshop builds on top of the previous one. If at any point you get stuck, you can find the answers in the source code of the given step. Any given step can be used as a starting point to continue on to the remaining steps.

You can start at the beginning. Afterwards follow these steps:

  1. JSX
  2. Environment setup
  3. Lists
  4. Fetching from server
  5. Email View
  6. Email Form
  7. Submit email form
  8. Delete email
  9. Mark unread/read
  10. Styling
  11. Email Form Modal
  12. API lib
  13. Action-Reducers

License

MIT

About

A step-by-step workshop for learning React fundamentals.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 77.7%
  • CSS 15.3%
  • HTML 7.0%