Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 1.04 KB

File metadata and controls

24 lines (16 loc) · 1.04 KB

Practice Project: Working with Effects

Key Topics

  • Build a “React Quiz” Web App
  • Dealing with Effect Dependencies & Cleanup
  • Combining Effects with Other React Concepts

Running the Application

To run the application, follow these steps:

git clone https://github.com/ThomasCode92/react-complete-guide
cd complete-path/practice-project-2   # navigate to project folder
npm install                           # install dependencies
npm run dev                           # start development server

Open http://localhost:5173 in a browser to view the application.

Debugging

To start the application in debug mode when encountering a bug, follow these steps. First, execute the debug script by running the command npm run debug. Then, initiate the VS Code debugger by clicking the green play icon in the debug panel and select the Practice Project 2 configuration. This will open a Chrome browser connected to the debugger, enabling inspection and troubleshooting of the application with ease.