To install React web is really easy all you need is ->
1.Node installed from here ->node install
then check if youve installed node correctly by checking version ,
node -v
or
node --version
kinda like this in your cmd / code editor
if it works , dont touch it 🙂. we gotta move forward .
2.install react using NPM , follow this command
npx create-react-app myapp
here myapp can be anything or your choice . be sure to follow react convention
- have names in lower case mostly with - ,
for example ->
then ull see something like this ->npx create-react-app rick-roll
that just means , the installation is going to work out what's needed in a default react app and install everything . bear in mind that this process is a little long comparatively and i might suggest grabbing a cofee ☕ or a snacc while this is working out .
3.when the installation is done we do get a lovely message from react team that's nice ->
ull also see a new folder made with the name u chose ,
cd over to the folder and run
npm start
and then boom the server will start on it's own
and that's how we install and run react but how to install things we do
npm i package
but that story is for another day thank you for the read .
by •/_\•