I'm currently in the process of creating a custom extension for Jupyter Notebook, following the guidance provided in this article:
To tweak and test my extension, I've been utilizing the Chrome developer tools on Windows7 to inspect and edit the JavaScript source code. Initially, I expected that hitting F5 to refresh the page would automatically apply my modifications.
However, as explained in the aforementioned article, it's necessary to execute
jupyter-contrib-nbextensions.exe install
and then restart the server in order to see the changes reflected in the notebook extension based on my code edits.
This process of reinstalling and refreshing after each minor adjustment can become quite frustrating while experimenting with the development and debugging of extensions.
=> I'm curious if there exists a feature or option for seamless automatic updating/reloading of the extension during development?