From bf5cfdf16ca7340388a9f77c5db534ae8060591b Mon Sep 17 00:00:00 2001 From: Nathan Date: Thu, 17 Oct 2024 11:16:43 +0100 Subject: [PATCH] Update README --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 94eea97..b27282b 100755 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ `git pull ` `npm install express --save` +socketio, mysql + ## Run `node server.js` @@ -21,3 +23,17 @@ Access through `http://localhost:3000` +### Development + +BACKEND/SERVER DEVELOPMENT ONLY + +To prevent the exhausting task of restarting the server on change +install and run with nodemon, it'll handle server restart each time +a js file is saved (this does also restart for front-end) + +`npm install -g nodemon` + +Run with + +`nodemon --inspect server.js` +