Simple way to hot reload your Node.js application is: using Nodemon In your package.json, rewrite the npm start “scripts”: { “start”: “nodemon ./bin/www”} We can…
Have a nice day!
Simple way to hot reload your Node.js application is: using Nodemon In your package.json, rewrite the npm start “scripts”: { “start”: “nodemon ./bin/www”} We can…
Simple ways to determine root path of your node.js applications: Add this somewhere towards the start of your main app file: app.js Use it just…