A JupyterLab extension that provides Jupyter Book navigation in a sidepanel widget with a Jupyter Book table of contents.
- JupyterLab >= 4.0.0 < 5
This JupyterLab extension contains a frontend extension (jb-toc-frontend) as well as a server extension (jb-toc).
Install jb-toc (installs both the frontend and server extensions)
-
When: Anytime you have a Jupyter Server, which is most of the time, and anytime you are running Jupyter Lab.
-
Why: When Jupyter Server is available, this is the reliably faster option for loading a Jupyter Book TOC.
-
Note: If accidentally installed in a serverless environmnent, the extension will default to frontend-only mode and still work.
To install both jb-toc and jb-toc-frontend, execute:
python -m pip install jb-tocInstall jb-toc-frontend (installs only the frontend extension)
-
When: When using JupyterLite. In a lightweight serverless environment where you want to avoid unessecarily installing the server extension.
-
Why: If Jupyter Server is not available,
jb-toc-frontendcan still access the files it needs to build the TOC (but more slowly). -
Don't: Have a frontend-only installation on a JupyterHub. It will take >3 seconds to load a TOC, and the hub has a Jupyter Server, so you should install
jb-tocfor a faster experience.
To install jb-toc-frontend, execute:
python -m pip install jb-toc-frontendTo remove the jb-toc extension, execute:
python -m pip uninstall jb-tocTo remove the jb-toc-frontend extension, execute:
python -m pip uninstall jb-toc-frontendNote: You will need NodeJS to build the extension package.
# Clone the repo to your local environment
# Change directory to the jb-toc directory
# Install package in development mode
# Install `jb-toc-frontend` first, as it is a dependency of `jb-toc`
python -m pip install -e ./jb_toc_frontend
python -m pip install -e ./jb_toc
# Link your development version of the extension with JupyterLab
jupyter labextension develop --overwrite
# Rebuild `jb-toc-frontend` Typescript source after making changes
jlpm --cwd ./jb_toc_frontend buildYou can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm --cwd ./jb_toc_frontend watch
# Run JupyterLab in another terminal
jupyter labWith the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
By default, the jlpm build command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:
jupyter lab build --minimize=Falsepython -m pip uninstall jb-toc
python -m pip uninstall jb-toc-frontendIn development mode, you will also need to remove the symlink created by jupyter labextension develop
command. To find its location, you can run jupyter labextension list to figure out where the labextensions
folder is located. Then you can remove the symlink named jb-toc-frontend within that folder.
This extension is using Jest for JavaScript code testing.
To execute them, execute:
jlpm --cwd ./jb_toc_frontend
jlpm --cwd ./jb_toc_frontend testThis extension uses Playwright for the integration tests (aka user level tests). More precisely, the JupyterLab helper Galata is used to handle testing the extension in JupyterLab.
More information are provided within the ui-tests README.
See RELEASE