I am currently fine tuning a Gulp setup that watch/compiles gulp-sass. The last step would be re-loading the server address in my browser.
I have seen browser-sync, live-reload's ability to create an express server and reload or inject the css changes.
However my css is located on an external server that uses https. I just need gulp to reload the browser link I currently have in my chrome.
example link https://myShoppingCartExample.com/?scope=cart¶meters (not a real link)
Thanks
Well first of I think best plugin for live reloading will be gulp-live-server (I am assuming you are using express nodejs), I tried other but none worked for me (You can install it using npm install gulp-live-server connect-livereload --save ).
Second here is how you can use it
But that's how it is normally done as you want to reload page not on file change but on some event of you own so instead of passing file object given by watch function we will use a custom object with path to index.html/file_that_contains_css_link/your_jade_file/etc. So call this task whenever you want to reload.
As a side note you need to add this after var app = express(); in you app.js or whatever you call it for live reloading to work.