Adventofcode 🎄: Day 14 - Set up a React Project
Jemima M
Posted on December 14, 2023
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
and then run
cd my-react-app
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!!
🎄
💖 💪 🙅 🚩
Jemima M
Posted on December 14, 2023
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
webdev A Tale of WeakMap and WeakSet in JavaScript: The Guardians of Forgotten Secrets
November 29, 2024