Jason Grout 7bbc7e8863 Move example code for services into tested files. vor 5 Jahren
..
examples 7bbc7e8863 Move example code for services into tested files. vor 5 Jahren
src 8635f64e10 Linting fixes vor 5 Jahren
typings 74eac68b72 Make codebase prettier vor 6 Jahren
.gitignore bd9c7df74d Import @jupyterlab/services d64afa08331c3f867b0fd6ffca85bfcd82b8deb1 vor 8 Jahren
README.md 7bbc7e8863 Move example code for services into tested files. vor 5 Jahren
package.json 7bbc7e8863 Move example code for services into tested files. vor 5 Jahren
tsconfig.json 4c8c7f1646 Use commonjs for services and coreutils vor 6 Jahren
typedoc.json afe04d6898 Migrate typedoc config to more conventional typedoc.json files vor 5 Jahren
webpack.config.js 8d52a016a2 Release 0.35.0rc0 vor 6 Jahren

README.md

JupyterLab Services

Javascript client for the Jupyter services REST APIs

API Docs

REST API Docs

Note: All functions and classes using the REST API allow a serverSettings parameter to configure requests. Requests are made using the fetch API, which is available in modern browsers or via npm install fetch for node users. The whatwg-fetch npm package can be used to polyfill browsers that do not support the fetch API.

Package Install

Prerequisites

npm install --save @jupyterlab/services
conda install notebook  # notebook 4.3+ required

Source Build

Prerequisites

git clone https://github.com/jupyterlab/jupyterlab.git
cd packages/services
npm install
npm run build
conda install notebook  # notebook 4.3+ required

Rebuild

npm run clean
npm run build

Run Tests

Follow the source build instructions first.

npm test

Build Docs

Follow the source build instructions first.

npm run docs

Navigate to docs/index.html.

Supported Runtimes

The runtime versions which are currently known to work are listed below. Earlier versions may also work, but come with no guarantees.

  • Node 0.12.7+
  • IE 11+
  • Firefox 32+
  • Chrome 38+

Note: "requirejs" may need be included in a global context for Comm targets using the a target_module (in the classic Notebook). This can be as a <script> tag in the browser or by using the requirejs package in node (npm install requirejs and setting global.requirejs = require('requirejs');).

Starting the Notebook Server

Follow the package install instructions first.

The library requires a running Jupyter Notebook server, launched as:

jupyter notebook

Bundling for the Browser

Follow the package install instructions first.

See examples/browser for an example of using Webpack to bundle the library.

Note: Some browsers (such as IE11), require a polyfill for Promises. The example demonstrates the use of the polyfill. See also notes about the fetch API polyfill above.

Usage from Node.js

Follow the package install instructions first.

See examples/node for an example of using an ES5 node script.

Usage Examples

Note: This module is fully compatible with Node/Babel/ES6/ES5. The examples below are written in TypeScript using ES6 syntax. Simply omit the type declarations when using a language other than TypeScript. A translator such as Babel can be used to convert from ES6 -> ES5.

Overview

Clients

A client is a single entity connected to a kernel. Since kernel messages include the client id, it is easy for a client to filter kernel messages for just messages between it and the kernel. In JupyterLab, different activities (such as a console and a notebook) are usually considered separate clients when connected to the same kernel.

Kernel specs

A kernel spec is the data about an available kernel on the system. We can retrieve a current list of kernel specs from the server.

Kernels

A kernel represents a running process on the server that implements the Jupyter kernel messaging protocol.

Kernel model

A kernel model mirrors the server kernel models, and represents a single running kernel on the server. A kernel can be created, restarted, shut down, etc., through calls to the server. A kernel model's lifecycle mirrors the server kernel model's lifecycle, and it will be disposed when the server kernel is shut down.

Kernel connection

A kernel connection represents a single client connecting to a kernel over a websocket. Typically only one kernel connection handles comms for any given kernel. The kernel connection is disposed when the client no longer has a need for the connection. Disposing a kernel does not cause the kernel to shut down. However, if a kernel is shut down, (eventually) all of its kernel connections will be disposed.

A kernel connection has a number of signals, such as kernel status, kernel connection status, etc.

Sessions

A session is a mapping on the server from an identifying string (the session's path) to a kernel. A session has a few other pieces of information to allow for easy categorization and searching of sessions.

The primary usecase of a session is to enable persisting a connection to a kernel. For example, a notebook viewer may start a session with session name of the notebook's file path. When a browser is refreshed, the notebook viewer can connect to the same kernel by asking the server for the session corresponding with the notebook file path.

Session model

A session model mirrors a server session. The session models can be refreshed from the server, created, changed (including creating a new session kernel), and shut down (which implies that the kernel will be shut down). A session model's lifecycle mirrors the server session's lifecycle, and it will be disposed when the server session is shut down.

Session connection

A session connection represents a single client connected to a session's kernel. A session's kernel connection can change and may be null to signify no current kernel connection. A session connection owns the kernel connection, meaning the kernel connection is created and disposed by the session connection as needed. The session connection proxies signals from the kernel connection for convenience (e.g., you can listen to the session's status signal to get status changes for whatever the current kernel is, without having to disconnect and reconnect your signal handlers every time the session kernel changes). The session connection can be disposed when the client no longer is connected to that session's kernel, and disposal will not cause the session model to be deleted.

Session Context

A session context is an object which has the same lifecycle as the client. The session context owns a session connection (which may be null if the client is not currently associated with a session). The session context proxies the current session connection's signals for convenience. The session context primarily serves as a stable object for a client to keep track of the current session connection.