This is a Express server, it's ready for executing and publishing the public folder as web server.
Server
- Execute the next command in the root folder (at the same level of "server" folder), in order to install all the npm libraries (node_modules) needed for using this RESTful server in your backend.
npm install
npm update
- Go to the folder "server" and execute the server.js file with the tool nodemon (https://www.npmjs.com/package/nodemon).
cd server
npm i -g nodemon
nodemon server.js
or
npm start --> This command executes "start": "node server/server.js" of package.json. This one must exist to deploy the App in "Heroku Application Platform".
npm run nodemon --> This command executes "nodemon server/server.js" of package.json
- Heroku: Cloud Application Platform --> Public Environment deployed
- CURRENT deployed Server (baseUrl) --> https://hoysiquepuedes-socketserver.herokuapp.com
- Supported requests:
Detailed changes for each release are documented in the release notes.