Jupyter Server Proxy lets you run arbitrary external processes (such as
RStudio, Shiny Server, Syncthing, PostgreSQL, Code Server, etc)
alongside your notebook server and provide authenticated web access to
them using a path like /rstudio
next to others like /lab
. Alongside
the python package that provides the main functionality, the JupyterLab
extension (@jupyterlab/server-proxy
) provides buttons in the
JupyterLab launcher window to get to RStudio for example.
Note: This project used to be called nbserverproxy. As nbserverproxy is an older version of jupyter-server-proxy, uninstall nbserverproxy before installing jupyter-server-proxy to avoid conflicts.
The primary use cases are:
- Use with JupyterHub / Binder to allow launching users into web interfaces that have nothing to do with Jupyter - such as RStudio, Shiny, or OpenRefine.
- Allow access from frontend javascript (in classic notebook or JupyterLab extensions) to access web APIs of other processes running locally in a safe manner. This is used by the JupyterLab extension for dask.
The documentation contains information on installation & usage.
jupyterlab>=2
ornotebook
pip install jupyter-server-proxy
conda install jupyter-server-proxy -c conda-forge
Note that as the JupyterLab extension only is a graphical interface to launch registered applications in the python package, the extension requires the python package to be installed.
As of version 3.0.0 the Python package ships with a JupyterLab 3 compatible extension, making this step only needed for JupyterLab 2.
jupyter labextension install @jupyterlab/server-proxy
jupyter serverextension disable jupyter_server_proxy
jupyter nbextension disable --py jupyter_server_proxy
Note that the extension name provided to the command (jupyterlab-server-proxy
) does not correspond
to the extension package name (@jupyterlab/server-proxy
). The jupyter labextension list
will
incorrectly report the extension as still being enabled after executing the disable command.
This will be fixed in the next major release of jupyter-server-proxy.
jupyter labextension disable jupyterlab-server-proxy
See CONTRIBUTING.md.