Live Reload on file change

It’s been a while since I’ve had to write pure html + css. I used to use Gulp + BrowserSync to reload my browser on saving my files. Now the same method with the same code and library versions don’t work anymore probably because of ever-changing changing APIs. I avoid codepen whenever I wan’t to upload my projects to github as is the case with this one.

I was wondering what other people around here use nowadays?

For bigger and more comprehensive project I generally use webpack as a bundler, so I end up using webpack-dev-server.

For the times I just fiddle around, or I don’t really need a bundler, I generally resort to live-server from the command line. (assuming you have node on your machine ofc).

Hope it helps! :+1:

2 Likes