Is there any tool that enables you to "hot swap" JavaScript contents while executing a webpage?
I am looking for something similar to what HotSpot does for Java, a way to "hot deploy" new JS code without having to reload the whole page.
Is there anything like that out there?
Clarifying in case people don't understand "hot swap", as indicated by lock:
By "hot swap" I mean allowing me to change parts of the code contained on the page itself and its .js files.
Then this framework would detect the change - either automagically or by some indication from my end - and reload the code dynamically, avoiding the new server-side post (reload).
That kind of approach would simplify debugging and error fixing, since you don't need to reload the page and start the interaction all over again, from scratch.