DEV Community

Jemima M
Jemima M

Posted on

1

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)

πŸ‘‹ Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay