Skip to content

Commit 6a166f1

Browse files
authored
Document the command to launch JupyterLab and watch for changes to the backend code for server extensions (#274)
* Document the command to launch JupyterLab and watch for changes to the backend code for server extensions * Add missing ToC entry
1 parent 7f5cd10 commit 6a166f1

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

server-extension/README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ example before diving into this one.
1414
- [Packaging the Extension](#packaging-the-extension)
1515
- [Python Package Manager](#python-package-manager)
1616
- [JupyterLab Extension Manager](#jupyterlab-extension-manager)
17+
- [Development](#development)
1718
- [Installing the Package](#installing-the-package)
1819

1920
## The template folder structure
@@ -565,7 +566,7 @@ done using [hatch](https://hatch.pypa.io/) builder with some additional plugins:
565566
- [hatch-jupyter-builder](https://github.com/jupyterlab/hatch-jupyter-builder/): Builder plugin to build Jupyter JavaScript assets as part of the Python package.
566567
Its configuration is done in `pyproject.toml`:
567568

568-
```
569+
```toml
569570
# pyproject.toml
570571

571572
[build-system]
@@ -758,6 +759,18 @@ And that server extension is available through `pip`:
758759
759760
For more information on the `discovery` metadata, please refer to the [documentation](https://jupyterlab.readthedocs.io/en/stable/extension/extension_dev.html#ext-author-companion-packages).
760761
762+
## Development
763+
764+
While developing your server extension, you can run JupyterLab and enable server reloading using the following command:
765+
766+
```bash
767+
jupyter lab --autoreload --no-browser
768+
```
769+
770+
This way, every time there is a change to the backend (server) code, JupyterLab is automatically relaunched, picking up the most recent changes.
771+
772+
The `--no-browser` flag is optional, but it helps prevent a new browser tab from opening each time JupyterLab is launched.
773+
761774
## Installing the Package
762775
763776
With the packaging described above, installing the extension is done in one command once the package is published on pypi.org:

0 commit comments

Comments
 (0)