Skip to content
This repository has been archived by the owner on Jul 10, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (25 loc) · 1.83 KB

00-react-a-beginners-guide-to-react-introduction.md

File metadata and controls

36 lines (25 loc) · 1.83 KB

00. A Beginners Guide to React Introduction

Notes

  • No requirements needed when taking this course.
  • Recommend that you watch all of these videos through once without touching the keyboard. Just take notes. Then watch them a second time and follow along and change/break the code and review the bits that you need.
  • Download or clone the source code: Course Repo and ⚠️ switch to the egghead branch.
    • download zip when in the branch
    • via CLI: git clone -b egghead https://github.com/kentcdodds/beginners-guide-to-react.git
  • VSCode is the recommend editor.
    • When VSCode is active, you can open its interal terminal CLI by Menu:View/Terminal.
  • Copy and paste the start script in a terminal window to locally serve all the files. Access the files in localhost:3000.

    • npx browser-sync start --server --files "./*.html" --no-open --no-notify --directory
    • npx comes bundled with Node.js
    • browsersync automatically reloads any changes made to the code.
    • More info on browsersync
  • Recommended setup:

- code editor opened
- browsersync running
- developer tools opened

img

Additional resource

  • Check out Kent's Uses Page to learn more about his setup.