All Projects → kentcdodds → React Fundamentals

kentcdodds / React Fundamentals

Licence: other
Material for my React Fundamentals Workshop

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to React Fundamentals

Advanced React Patterns
This is the latest advanced react patterns workshop
Stars: ✭ 1,899 (-41.52%)
Mutual labels:  kcd-edu, epicreact-dev
Bookshelf
Build a ReactJS App workshop
Stars: ✭ 2,179 (-32.89%)
Mutual labels:  kcd-edu, epicreact-dev
React Hooks
Learn React Hooks! 🎣 ⚛
Stars: ✭ 1,988 (-38.77%)
Mutual labels:  kcd-edu, epicreact-dev
React Suspense
React Suspense workshop
Stars: ✭ 491 (-84.88%)
Mutual labels:  kcd-edu
React Performance
Let's make our apps fast ⚡
Stars: ✭ 1,035 (-68.12%)
Mutual labels:  kcd-edu
Advanced React Patterns V2
Created with CodeSandbox
Stars: ✭ 1,495 (-53.96%)
Mutual labels:  kcd-edu
Js Mocking Fundamentals
JavaScript Mocking Fundamentals on TestingJavaScript.com
Stars: ✭ 182 (-94.39%)
Mutual labels:  kcd-edu
Stack Overflow Copy Paste
Utility functions copy/pasted (and modified slightly) from Stack Overflow
Stars: ✭ 399 (-87.71%)
Mutual labels:  kcd-edu
Static Testing Tools
Static Analysis Testing JavaScript Applications on TestingJavaScript.com
Stars: ✭ 141 (-95.66%)
Mutual labels:  kcd-edu
App Dev Tools
An example of how to create and hook up App DevTools to improve your development productivity of your application
Stars: ✭ 102 (-96.86%)
Mutual labels:  kcd-edu
Simply React
Stars: ✭ 101 (-96.89%)
Mutual labels:  kcd-edu
Advanced React Patterns V1
The course material for my advanced react patterns course on Egghead.io
Stars: ✭ 1,106 (-65.94%)
Mutual labels:  kcd-edu
React Hooks And Suspense Egghead Playlist
This is the code for the egghead playlist "React Hooks and Suspense"
Stars: ✭ 128 (-96.06%)
Mutual labels:  kcd-edu
Testing Workshop
A workshop for learning how to test JavaScript applications
Stars: ✭ 1,276 (-60.7%)
Mutual labels:  kcd-edu
React Testing Library Course
Test React Components with Jest and React Testing Library on TestingJavaScript.com
Stars: ✭ 699 (-78.47%)
Mutual labels:  kcd-edu
Testing React Apps
A workshop for testing react applications
Stars: ✭ 443 (-86.36%)
Mutual labels:  kcd-edu
Advanced React Hooks
Learn Advanced React Hooks workshop
Stars: ✭ 1,208 (-62.8%)
Mutual labels:  kcd-edu
The Beginner S Guide To Reactjs
The beginner's Guide to ReactJS course material for Egghead.io
Stars: ✭ 185 (-94.3%)
Mutual labels:  kcd-edu
Dom Testing Library With Anything
Use DOM Testing Library to test any JS framework on TestingJavaScript.com
Stars: ✭ 177 (-94.55%)
Mutual labels:  kcd-edu
Modern Javascript
Get up to speed on the latest, most useful JavaScript features to level up your programming
Stars: ✭ 123 (-96.21%)
Mutual labels:  kcd-edu

React Fundamentals 🚀 EpicReact.Dev

Learn the foundational concepts necessary for building React applications and libraries

Learn everything you need to be effective with the fundamental building block of React applications. When you’re finished, you’ll be prepared to create React components to build excellent experiences for your app's users.

Learn React from Start to Finish

Build Status GPL 3.0 License All Contributors Code of Conduct

Prerequisites

System Requirements

  • git v2.13 or greater
  • NodeJS 12 || 14 || 15 || 16 || 17
  • npm v6 or greater

All of these must be available in your PATH. To verify things are set up properly, you can run this:

git --version
node --version
npm --version

If you have trouble with any of these, learn more about the PATH environment variable and how to fix it here for windows or mac/linux.

Setup

If you want to commit and push your work as you go, you'll want to fork first and then clone your fork rather than this repo directly.

After you've made sure to have the correct things (and versions) installed, you should be able to just run a few commands to get set up:

git clone https://github.com/kentcdodds/react-fundamentals.git
cd react-fundamentals
node setup

This may take a few minutes. It will ask you for your email. This is optional and just automatically adds your email to the links in the project to make filling out some forms easier.

A few common issues during node setup have involved PATH variables (above links or here), reinstalling git, node, or npm, and clearing npm caches.

If you get any errors, please read through them and see if you can find out what the problem is. If you can't work it out on your own then please file an issue and provide all the output from the commands you ran (even if it's a lot).

If you can't get the setup script to work, then just make sure you have the right versions of the requirements listed above, and run the following commands:

npm install
npm run validate

If you are still unable to fix issues and you know how to use Docker 🐳 you can setup the project with the following command:

docker-compose up

It's recommended you run everything locally in the same environment you work in every day, but if you're having issues getting things set up, you can also set this up using GitHub Codespaces (video demo) or Codesandbox.

Running the app

To get the app up and running (and really see if it worked), run:

npm start

This should start up your browser. If you're familiar, this is a standard react-scripts application.

You can also open the deployment of the app on Netlify.

Running the tests

npm test

This will start Jest in watch mode. Read the output and play around with it. The tests are there to help you reach the final version, however sometimes you can accomplish the task and the tests still fail if you implement things differently than I do in my solution, so don't look to them as a complete authority.

Exercises

  • src/exercise/00.md: Background, Exercise Instructions, Extra Credit
  • src/exercise/00.js: Exercise with Emoji helpers
  • src/__tests__/00.js: Tests
  • src/final/00.js: Final version
  • src/final/00.extra-0.js: Final version of extra credit

The purpose of the exercise is not for you to work through all the material. It's intended to get your brain thinking about the right questions to ask me as I walk through the material.

Helpful Emoji 🐨 💰 💯 📝 🦉 📜 💣 💪 🏁 👨‍💼 🚨

Each exercise has comments in it to help you get through the exercise. These fun emoji characters are here to help you.

  • Kody the Koala 🐨 will tell you when there's something specific you should do
  • Marty the Money Bag 💰 will give you specific tips (and sometimes code) along the way
  • Hannah the Hundred 💯 will give you extra challenges you can do if you finish the exercises early.
  • Nancy the Notepad 📝 will encourage you to take notes on what you're learning
  • Olivia the Owl 🦉 will give you useful tidbits/best practice notes and a link for elaboration and feedback.
  • Dominic the Document 📜 will give you links to useful documentation
  • Berry the Bomb 💣 will be hanging around anywhere you need to blow stuff up (delete code)
  • Matthew the Muscle 💪 will indicate that you're working with an exercise
  • Chuck the Checkered Flag 🏁 will indicate that you're working with a final
  • Peter the Product Manager 👨‍💼 helps us know what our users want
  • Alfred the Alert 🚨 will occasionally show up in the test failures with potential explanations for why the tests are failing.

Contributors

Thanks goes to these wonderful people (emoji key):


Kent C. Dodds

💻 📖 🚇 ⚠️

Justin Dorfman

🔍

Ben Ilegbodu

📖

Jonathan Belcher

📖

Richard Hefner

💻

Zac Jones

📖

Ricardo Busquet

📖

Arpan Chattopadhyay

📖

Marco Moretti

💻

cindy

📖

Aaron Reisman

📖

Jacob M-G Evans

👀

Jesse Hull

📖

Tomas Caraccia

📖

Vasilii Kovalev

💻

Felix Geelhaar

📖

Apola Kipso

📖

dcgoodwin2112

🐛

Pritam Sangani

💻

Ryan Hinerman

📖 💻

Marco

🐛

Peter Hozák

💻

Emmanouil Zoumpoulakis

📖

Navneet Sahota

📖

Rodrigo Fuentes

📖

Johnny Magrippis

💻

Roshan Acharya

📖

Art Telesh

📖 💻

Amr A.Mohammed

🤔

Douglas

📖

Gaurav

💻

LauraOneasca

📖

Michaël De Boey

💻

Hannes Diercks

⚠️

Luke

🐛

Toni Dezman

💻

Bobby Warner

💻

Konrad Szałwiński

💻

Yaseen Kadir

🐛

Kevin Viglucci

📖

Iliyan Trifonov

📖

Oscar Dominguez

📖

Aaron Casanova

💻

Kyle Gach

📖

Anthony Diké

📖

Matt Schlenker

📖

Jakub

📖

Victor Debone

📖

Mahbub Zaman

📖

Misaki Okajima

📖

Mario Sannum

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

Workshop Feedback

Each exercise has an Elaboration and Feedback link. Please fill that out after the exercise and instruction.

At the end of the workshop, please go to this URL to give overall feedback. Thank you! https://kcd.im/rf-ws-feedback

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].