i am trying to upload react.js app on cloud which have windows os installed . How can i upload and start my react app Using windows IIS.
First, you need to install the node on the windows:
https://nodejs.org/en/download/
install IIS by following these steps:
after installing node and iis open command prompt as administrator and enter to the react js application folder.
example:
my react js application is under the C:\windows\system32\
to go to that path use command:
cd C:\windows\system32\my-app
run react app using :
npm start
check that application is running properly or not.
then run the command:
npm run build
You can see the build folder in your application folder.
note: select the build folder when you add site path.