Jupyter Server Proxy
Jupyter Server Proxy lets you run arbitrary external processes (such as RStudio, Shiny Server, syncthing, PostgreSQL, etc) alongside your notebook, and provide authenticated web access to them.
Note: This project used to be called nbserverproxy. if you have an older version of nbserverproxy installed, remember to uninstall it before install jupyter-server-proxy - otherwise they may conflict
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.
Install
pip
pip install jupyter-server-proxy
conda
conda install jupyter-server-proxy -c conda-forge
src
pip install .
Note: if installing from source in editable mode: setup.py develop/pip install -e
, please explicitly install the server extensions:
jupyter serverextension enable --sys-prefix jupyter_server_proxy