When I build a page or write its logic on js, I use gulp connect.reload (). When saving a file, the galp sees that the files have changed and reloads the browser page. It's comfortable.

But when it’s not just the layout of a page or element, but the development of a component that depends on the data from the server, I won’t be able to follow the page opened on the local computer. After each change, I have to upload files to the server (or it will happen automatically with the help of a galp), and then open the address of my site and press ctrl + f5. It is not comfortable.

Server on node

Is there any way to automate this? How do you solve this problem?

0