score:1

if your project is using webpack then hot relaoding will work :https://webpack.js.org/concepts/hot-module-replacement/ otherwise if it is just node you can use a server like nodemon eg:

$ npm install nodemon -g
$ nodemon app.js

this automatically pick up changes.


Related Query

More Query from same tag