Skip to main content

Jupyter extension to proxy Stencila

Project description

Jupyter + DAR/stencila = nbstencilaproxy

Jupyter + Dar compatibility exploration for running Stencila on Binder

Demo

Click on the button below to launch an online Jupyter instance on mybinder.org based on this repository:

Try it out! Binder

Open an the example Dar archive by clicking on "New > Stencila Session":

About

This project is part of the eLife Innovation Sprint 2018 and Mozilla Global Sprint 2018 (see https://github.com/mozilla/global-sprint/issues/317)

This project comprises two modules:

  • a JavaScript package for installing and running Stencila (client/UI and services) in a Jupyter container
  • a Python package (nbstencilaproxy) for installing and running a proxy (based on nbserverproxy) to access the UI as well as services provided by Stencila; the package also extends the Jupyter UI to add a "New Stencila Session" button

Team

How?

Configuration of the image

Several configuration files in the directory binder/ are picked up by mybinder.org during the image build process and install the required software and several Stencila kernels.

  • environment.yml and requirements.txt install Python dependencies
  • runtime.txt adds an R installation
  • ìnstall.R installes and configures the R context for Stencila
  • postBuild
    • installs the notebook extensions for
      • running a Stencila host and the Stencila user interface via a proxy (details below)
      • extending the Jupyter UI
      • enabling the Stencila Jupyter context
    • installs and configures the plain Python context for Stencila

The default archive is set in binder/postBuild by configuring the environment variable STENCILA_ARCHIVE.

Running Stencila in the Jupyter container

We first used Stencila's development build to run the app using node make -w -s -d /our/own/dir, but struggled a bit to configure the file storage, i.e. the dar-server, to use the directory we want to, and to run it in a full path configured by us instead of make.js starting the dar-server relative to __dirname. Eventually we ended up implementing our own minimal npm package that pulls in Stencila as a dependency and runs the dar-server and static file server for the app using the files from the dist directory. See the file stencila.js for details. This gives us control of the paths and let's us get rid of complex development features (substance-bundler etc.).

We also made our own version of app.js, getting rid of the virtual file storage stuff (vfs), defaulting storage to fs (file system), because that is what is needed for Jupyter - we do not need to host any examples. In the same line, we built own index.html (based on example.html) and serve that, which allows us to directly render a DAR document instead of a listing of examples and instruction and to use our app.js.

Relevant path configurations comprise the local storage path as well as the URLs used by the client, accessing the dar-server through the nbserverproxy.

The Dockerfile installs our helper npm package and adds + configures the nbserverproxy tool (see requirements.txt and jupyter_notebook_config.py).

Connecting Stencila to Jupyter kernels

Stencila has "execution contexts" (the equivalent of Jupyter's "kernels") for R, Python, SQL, Javascript (in the browser), and Node.js. Execution contexts differ from kernels in a number of ways including local execution and dependency analysis of cells. Both of these are necessary for the reactive, functional execution model of Stencila Articles and Sheets.

We could install these execution contexts in the Docker image. However, Stencila also has a JupyterContext which acts as a bridge between Stencila's API and Jupyter kernels. So, since the base jupyter/minimal-notebook image already has a Jupyter kernel for Python installed it we decided to use that. This does mean however, that some of the reactive aspects of the Stencila UI won't work as expected. Also the JupyterContext is not well developed or tested.

We have included the stencila-node Node.js package in the Docker image which provides the JupyterContext as well as a NodeContext (for executing Javascript) and a SqliteContext (for executing SQL) .

Making Stencila available via a Proxy

nbstencilaproxy provides Jupyter server and notebook extensions to proxy Stencila. It is based on nbrsessionproxy but does not include the support nbrsessionproxy has for JupyterLab.

Install

Install package:

pip install git+https://github.com/minrk/nbstencilaproxy

Install the extensions for all users on the system:

jupyter serverextension enable  --py --sys-prefix nbstencilaproxy
jupyter nbextension     install --py --sys-prefix nbstencilaproxy
jupyter nbextension     enable  --py --sys-prefix nbstencilaproxy

Development

  • Run locally with repo2docker
# install repo2docker: https://repo2docker.readthedocs.io/en/latest/usage.html#running-repo2docker-locally

# run repo2docker for the local repository
jupyter-repo2docker --debug .
  • Login by visiting the tokenized URL displayed e.g. http://localhost:8888/?token=99a7bc13...

  • Click on the "New > Stencila Session" button on the Jupyter start page, opening the py-jupyter example, or

  • Open one of the included examples by appending the following parameters to the URL:

License

BSD 3-Clause License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nbstencilaproxy-0.1.1.tar.gz (296.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page