I made an React App and currently i'm using webpack dev server to host it locally. I need now to deploy and have this app run as a service in a Windows Server in order to be able to close the Windows Session and still have the app running.
Now, i don't really know how webpack dev server works... i have worked on NodeJS project and just by running "node {file}" the server was running and with "forever" extension it ran as a service.
How can i make this app run as a service?
The way i host my app locally is by using "npm start" which according to the package.json runs a webpack-dev-server.
package.json (just a part):
"scripts": {
"start": "webpack-dev-server --hot --open",
"lint": "eslint src" },