Giter Club home page Giter Club logo

modern-react's Introduction

DEPRECATED

Instead of this repo, you want:

Confidently Ship Well-Architected Production Ready React Apps Like a Pro Learn React from Start to Finish

Seriously, get EpicReact.Dev instead. It's better.

You can find all the EpicReact.Dev material on GitHub: https://github.com/topics/epicreact-dev

Original README content:

Modern React

๐Ÿ‘‹ hi there! My name is Kent C. Dodds! This is a workshop repo to teach you about using all the goodies we got from React 16.7.0!

chat-badge Build Status AppVeyor Build Status Code Coverage MIT License All Contributors

PRs Welcome Code of Conduct Watch on GitHub Star on GitHub Tweet

System Requirements

  • git v2.14.1 or greater
  • NodeJS v8.9.4 or greater
  • npm v5.6.0 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

You may be able to work through the entire workshop in the browser. Go to this codesandbox and you should be good to go.

If you'd rather be able to work through the workshop on your own computer, then follow the following instructions.

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/modern-react.git
cd modern-react
npm run setup --silent

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 If you get any errors, please read through them and see if you can find out what the problem is. You may also want to look at Troubleshooting. 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).

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.

Your goal will be to go into each test, swap the final version for the exercise version in the import, and make the tests pass

Helpful Emoji ๐Ÿจ ๐Ÿ’ฐ ๐Ÿ’ฏ

Each exercise has comments in it to help you get through the exercise. Kody the Koala Bear and Marty the Money Bag are here to help you. Kody ๐Ÿจ will tell you when there's something specific you should do, and Marty ๐Ÿ’ฐ will give you specific tips along the way. Should you finish early, Hannah the Hundred Points Symbol ๐Ÿ’ฏ will give you some additional challenges that you can try!

Troubleshooting

"npm run setup" command not working

Here's what the setup script does. If it fails, try doing each of these things individually yourself:

# verify your environment will work with the project
node ./scripts/verify

# install dependencies
npm install

# verify the project is ready to run
npm run build
npm run test:coverage

If any of those scripts fail, please try to work out what went wrong by the error message you get. If you still can't work it out, feel free to open an issue with all the output from that script. I will try to help if I can.

Contributors

Thanks goes to these wonderful people (emoji key):


Kent C. Dodds

๐Ÿ’ป ๐Ÿ“– ๐Ÿš‡ โš ๏ธ

Andrew Clark

๐Ÿ’ฌ ๐Ÿค” ๐Ÿ‘€

Sophie Alpert

๐Ÿ’ฌ ๐Ÿค” ๐Ÿ‘€

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

License

This material is available for private, non-commercial use under the GPL version 3. If you would like to use this material to conduct your own workshop, please contact me at [email protected]

modern-react's People

Contributors

kentcdodds avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

modern-react's Issues

Remove flushEffects from test 3

In tests/03.js, the function flushEffects() is imported on line 2 and called on line 19 which causes an error.

Removing flushEffects from the import and from line 19 fixes the error and lets the test pass.

Subjects

Topics:

  • React.lazy
  • React.pure
  • Fundamental React Suspense
  • React Suspense (with react-cache)
  • useAPI
  • useCallback
  • useContext
  • useEffect
  • useLayoutEffect?
  • useMemo
  • useMutationEffect?
  • useReducer
  • useRef
  • useState
  • Custom hooks

Examples:

  1. Counter:
  • useState
  1. useCount
  • Custom hooks
  1. VanillaTilt:
  • useRef
  • useEffect
  1. useVanillaTilt
  • Custom hooks
  1. StopWatch
  • useRef (useAPI?)
  • useState
  • useEffect
  1. StopWatch:
  • useReducer (a la redux)
  1. StopWatch:
  • useReducer (a la setState)
  1. useStopWatch:
  • Custom hooks
  1. FetchPokemon:
  • Fundamental Suspense
  1. FetchPokemon
  • Suspense with react-cache
  1. FetchPokemon
  • useContext
  1. FetchPokemon
  • React.lazy
  1. Contrived Component within another
  • React.pure
  1. When to not use hooks:
  • Outside render phase
  • In class component
  • Conditionally
  • In a loop

Review

Hey @sophiebits, @acdlite, and @gaearon ๐Ÿ‘‹

I'm planning on using this for teaching material to teach PayPal engineers as well as create workshops and video material about cool stuff coming in React 16.7.0 (after you've announced the features of course). All the material I develop for this initial release will be available for people to learn from for free :)

If you could please review the code in https://github.com/kentcdodds/modern-react/tree/master/src/exercises-final to make sure that I'm not doing something odd/wrong with these features that would be really helpful! I want to make sure that when these features are released there's some material out there for people to learn about them.

If you want to run this stuff, you can run the setup script and then copy over the builds of React that you have with these features.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.