/jupyter-react

🪐 ⚛️ React.js components to create data products compatible with the Jupyter ecosystem.

Primary LanguageTypeScriptMIT LicenseMIT

Datalayer

🪐 ⚛️ Jupyter React

Jupyter React is a set of React.js components that allow a frontend developer to build data products compatible with the Jupyter ecosystem. The user interface delivers executable notebooks and cells.

The below image shows a gallery of the available React.js components ready to be used in you custom application. These open source components are used to build the online Datalayer service, a collaborative platform for data analysis.

Jupyter React Gallery

Why?

The Jupyter(Lab) notebook is a tool that allows data scientist to analyse dataset. However, it is not easy to create a custom user interface integrated in an existing application. Jupyter React, an open-source library, fills that gap and provides components that a developer can easily integrate in any React.js application.

In terms of technical stack, the Jupyter(Lab) user interface is built on top of Lumino, which is an imperative way to build user interface and can not be consumed by industry standard declarative frameworks like React.js. As a user interface developer, if you want to create a custom data product on top of Jupyter, you have to stick to Lumino and carry-on the full notebook interface not tailored to your specific needs. This is not what you want. You just want to expose what you need, you want to develop with your favorite toolkit (like React.js) and you also want to integrate on a per-component basis the Jupyter functionality in your application.

Although a developer can embed a React.js component into JupyterLab, the reverse is not possible: you can not embed JupyterLab into a React.js application. To solve that issue, Jupyter-React ships components to easily create a React.js data product compatible with the Jupyter ecosystem. Those components can be used in any React.js application, and also in static websites like Docusaurus, Next.js or Remix. They wrap underneath the JupyterLab code and allow developing React.js applications with code execution capability. State management is based on Redux, and Mobx is to be added.

Jupyter React Communication

IPyWidgets are supported (the Comm feature needs to be fixed). JupyterLite and PyScript support is on the roadmap. Autocompletion is also available.

You can find more context reading this abstract of the talk given at FOSDEM 2022 (video recording).

Usage

As a React.js developer, you just write a few lines of code get a live notebook or live cell in your application.

Jupyter React Slate

The jupyter-react library can be used in any React.js application. Install the latest @datalayer/jupyter-react npm package and get inspired by the examples in this repository.

Jupyter React Slate

Third party integrations

We maintain a plugin for Docusaurus in the docusaurus package folder (see the Docusaurus example).

Jupyter React Slate

Traitlets React

As part of the jupyter-react components, we also want to ease the creation of user interfaces based on the Jupyter Traitlets. This will allow a front-end developer to start from the traits (configuration definition) defined in Python code and automatically generate a React.js user interface which can be used to manage your settings in a visual way. The traits would be converted to json-schema definitions that can be used to create the React.js components. This is particularly useful to build management user interfaces.


✍️ 🖌️ Literate Notebook

The Literate Notebook for literate programming iscompatible with Jupyter and ObservableHQ. It can be run standalone or as Jupyter Notebook, JupyterLab, Visual Studio Code extension.

As successor to the above components wrapping JupyterLab, we are developing a brand new user interface Literate Notebook to better address literate programming requirements, compatible with Jupyter and ObservableHQ as envisioned by Donald Knuth back in 1983.

Literate programming is a programming paradigm introduced by Donald Knuth in which a computer program is given an explanation of its logic in a natural language, such as English, interspersed with snippets of macros and traditional source code, from which compilable source code can be generated. The approach is used in scientific computing and in data science routinely for reproducible research and open access purposes. https://en.wikipedia.org/wiki/Literate_programming

Instead of having the well-known cell-based structure for notebooks (each cell being a separated editor), we will provide a Notebook user-experience that will be like Notion or Google Docs. After deep exploration of Slate, Prosemirror and Lexical as the foundation for this Literate Norebook, we have chosen Lexical (see the playground). Non-user-interface components from JupyterLab could be reused, like the services to communicate with the server (this is what Visual Studio is reusing also). However, in the long term, the services would need to be rewritten based on a robust state-machine (for now, a lot of if-then-else have grown empirically to fit the kernel message protocols and the quality is not there unfortunately).

A a developer, you will create a custom data product a-la-google-docs as shown above. This Literate Notebook will be shipped as a standalone component, as Jupyter Notebook, JupyterLab and as Visual Studio Code extension.

Jupyter React Slate

We will add collaborative and accessible features to read, write and publish data analysis to Microsoft Office 365 and Google Workspace.


Documentation

You can get more details on the Jupyter React website.

The typedoc documentation is available online.

Support

Please open issues for questions, feature requests, bug reports... We also welcome pull requests.

Contribute

Follow the below steps to create your development environment. You will need Miniconda up-and-running on your machine (MacOS or Linux, Windows is not supported as development platform for the time-being).

# Clone the jupyter-react repository.
git clone https://github.com/datalayer/jupyter-react.git && \
  cd jupyter-react
# Setup your development environment.
conda deactivate && \
  make env-rm # If you want to reset your environment.
make env && \
  conda activate datalayer
# Install and build.
make install build
# You can start an example and hack the source code.
# The changes will build automatically and will be available in your browser.
# You will have to accept to SSL certificate in your browser the first time.
echo open https://localhost:3208
yarn start
# We have more examples. Pick one of the following commands and enjoy.
yarn start:create-react-app      # open http://localhost:3000
yarn start:docusaurus            # open http://localhost:3000/docs/intro
yarn start:lexical               # open http://localhost:3208
# ...and some uncomplete and deprecated examples...
yarn start:slate                 # open http://localhost:3266
yarn start:prosemirror           # open http://localhost:4567

⚖️ License

Copyright (c) 2022 Datalayer, Inc.

Released under the terms of the MIT license (see LICENSE).