Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1.46 KB

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

File metadata and controls

32 lines (21 loc) · 1.46 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.
  • 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.