#to get it running on your machine you'll need to run these in your terminal:
-
npm install
-
npm i express
-
npm i path
-
npm install nodemon --save-dev
-
npm i vite
-
npm run build
-
npm run devStart
-
the server should be online on http://localhost:5000/
-
if you do any changes on the server.js the server will restart automatically
-
if you do any changes on the front end (src/App.jsx) you will need to close the server, run 'npm run build' and restart the server with 'npm run devStart'
thanks for your help.