Refreshing browsers for change incontent; poor mans dev workflow
How do we refresh browser automatically when working on a front end development workflow?
Last updated: Jan 6, 2025
🟧
front-end
brower-sync
When working on pure html, setting up servers to render html and refresh on
changes.
Was looking for gulp, but found this which seems to do it well.
In my opinion it's simpler to (on Linux) install nodejs and npm sudo apt install
nodejs npm. Then you can do npm -g install browser-sync, and finally
browser-sync start --server --files "*.html", "*.css". –
PetaspeedBeaver
Commented Feb 12 at 20:40