Browser Sync

Install Browser Sync

https://browsersync.io/

Installing “Browser Sync” :

npm install -g browser-sync

Run Browse Sync

For Static Site

browser-sync start --server --directory --files "**/*"

Or

browser-sync start --server --files "*.*"

For Dynamic Site

browser-sync start --proxy "yoursitename.com" --files "**/*"