I am using this command to open up my app in the browser: cordova serve
but it does not refresh itself when I update my code. How can I do that?
I have trie
Easiest solution is just to use phonegap serve
instead of cordova serve
. As long as you've got phonegap installed it'll work even if you built the app with just cordova.
phonegap serve
gives you an IP address that will live reload and that you can access from the browser or the phonegap developers app. Both are very handy and actually work, which is always a plus.