As the title, each time you need to refresh the URL, can't you automatically refresh the webpage in the browser?
That's a bit beyond scope for http-server (which isn't just for development). There are projects (usually connected to code bundlers like webpack or browserify) which watch files, (re)bundle them, and then reload your UX.
Since we don't do any file watching (and we're not likely too), then this one is beyond scope for us.
However, it could be done via a separate tool that could watch the same directory that http-server is serving out of and reload the related URL if/when the files on disk change. If you find such a tool, I'm more than happy to have it mentioned in the README.
Thanks for asking!
I have found the tools I need.
Front page page hot update
Nodejs hot update
Finally, if I use webpack, I usually use webpack-dev-server. http-server is generally used to quickly start http service.
Most helpful comment
I have found the tools I need.
Front page page hot update
Nodejs hot update
Finally, if I use webpack, I usually use webpack-dev-server. http-server is generally used to quickly start http service.