Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Configure nodemon to refresh same tab

This could be really rookie. I want to know if there is a way that I can configure nodemon to refresh the same tab instead of opening a new tab each time I make a change in my js files.

like image 716
InquisitiveP Avatar asked Sep 15 '25 00:09

InquisitiveP


2 Answers

nodemon is not able to do that. What you are looking for is something like browser-sync or LiveReload.js.

like image 51
Lucas S. Avatar answered Sep 16 '25 15:09

Lucas S.


Its Simple. To run your server use npm start instead of nodemon server

like image 21
Shuaib Abubakker Bapputty Haji Avatar answered Sep 16 '25 14:09

Shuaib Abubakker Bapputty Haji