Skip to main content

Command Palette

Search for a command to run...

Using create-react-app

by Ifeanyi Omeata

Updated
1 min read
Using create-react-app
I

Hi, I am a Software Developer of 3-4 years specialising in React, Javascript, Node, NextJS, Express, Python, Django, Fast API, SQL and a few other technology stack, with a good background in Networking and Cloud Infrastructure. I am working to become a DevOps Solutions Engineer and happily married to my long time girlfriend.


#1. Create React App is a fast and realiable way to create single-page applications. It requires minimal configurations and a realiable code base. To use create-react-app, we would first install nodejs on our computer.


image.png


#2. Next, we would run the create-react-app code, create a folder for our app called "my-app", and then install all the React app dependencies into the app folder to deploy the application.


npx create-react-app my-app
cd my-app
npm start

image.png image.png image.png


#3. The react project has now started on http://localhost:3000.


image.png

#End


Hope you enjoyed this! :) Follow me for more contents...


Get in Touch:
www.ifeanyiomeata.com
contact@ifeanyiomeata.com

Youtube: https://www.youtube.com/c/IfeanyiOmeata
Linkedin: https://www.linkedin.com/in/omeatai/
Twitter: https://twitter.com/iomeata
Github: https://github.com/omeatai/
Stackoverflow: https://stackoverflow.com/users/2689166/omeatai
Hashnode: https://hashnode.com/@omeatai
Medium: https://medium.com/@omeatai
© 2021

LEARN JAVASCRIPT/REACT/NODE

Part 9 of 10

Learn Javascript, React and Node the easy way!..... JAVASCRIPT | REACT | NODE | NEXTJS | MONGODB | EXPRESS

Up next

Using React directly on HTML

By Ifeanyi Omeata