DEV Community

Jemima M
Jemima M

Posted on

Adventofcode 🎄: Day 14 - Set up a React Project

Let's set up a React project.

Step 1
Download and install Node.js and npm

Step 2
Open your terminal and run:

npm create-react-app my-react-app

Enter fullscreen mode Exit fullscreen mode

and then run

cd my-react-app

Enter fullscreen mode Exit fullscreen mode

to change into your project directory.

Step 3
Run the npm install command to install the project dependancies.

Step 4
Start the development server with npm start to launch the app.

Step 5
Explore the project structure and get familiar with the public and src directories.

Step 6
Modify or create components.

Step 7
Learn React basics to get familiar with it.

Step 8
Experiment and BUILD!!

🎄

Top comments (0)