Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
jupyter-js-services
Advanced tools
Javascript client for the Jupyter services REST APIs
Note: All functions and methods using the REST API allow an optional
ajaxOptions
parameter to configure the request.
Prerequisites
npm install --save jupyter-js-services
Prerequisites
git clone https://github.com/jupyter/jupyter-js-services.git
cd jupyter-js-services
npm install
npm run build
Rebuild
npm run clean
npm run build
Follow the source build instructions first.
npm test
Follow the source build instructions first.
npm run docs
Navigate to docs/index.html
.
The runtime versions which are currently known to work are listed below. Earlier versions may also work, but come with no guarantees.
Follow the package install instructions first.
npm install --save xmlhttprequest ws
Override the global XMLHttpRequest
and WebSocket
:
import { XMLHttpRequest } from "xmlhttprequest";
import { default as WebSocket } from 'ws';
global.XMLHttpRequest = XMLHttpRequest;
global.WebSocket = WebSocket;
Note: This module is fully compatible with Node/Babel/ES6/ES5. Simply omit the type declarations when using a language other than TypeScript.
Kernel
import {
listRunningKernels, connectToKernel, startNewKernel, getKernelSpecs
} from 'jupyter-js-services';
// get a list of available kernels and connect to one
listRunningKernels({ baseUrl: 'http://localhost:8000' }).then(kernelModels => {
var options = {
baseUrl: 'http://localhost:8000',
wsUrl: 'ws://localhost:8000',
name: kernelModels[0].name
}
connectToKernel(kernelModels[0].id, options).then((kernel) => {
console.log(kernel.name);
});
});
// get info about the available kernels and start a new one
getKernelSpecs({ baseUrl: 'http://localhost:8888' }).then(kernelSpecs => {
console.log('Default spec:', kernelSpecs.default);
console.log('Available specs', Object.keys(kernelSpecs.kernelspecs));
// use the default name
var options = {
baseUrl: 'http://localhost:8888',
wsUrl: 'ws://localhost:8888',
name: kernelSpecs.default
}
startNewKernel(options).then((kernel) => {
// execute and handle replies
var future = kernel.execute({ code: 'a = 1' } );
future.onDone = () => {
console.log('Future is fulfilled');
}
future.onIOPub = (msg) => {
console.log(msg.content); // rich output data
}
// restart the kernel and then send an inspect message
kernel.restart().then(() => {
var request = { code: 'hello', cursor_pos: 4, detail_level: 0};
kernel.inspect(request).then((reply) => {
console.log(reply.data);
});
});
// interrupt the kernel and then send a complete message
kernel.interrupt().then(() => {
kernel.complete({ code: 'impor', cursor_pos: 4 } ).then((reply) => {
console.log(reply.matches);
});
});
// register a callback for when the kernel changes state
kernel.statusChanged.connect((status) => {
console.log('status', status);
});
// kill the kernel
kernel.shutdown().then(() => {
console.log('Kernel shut down');
});
});
});
NotebookSession
import {
listRunningSessions, connectToSession, startNewSession
} from 'jupyter-js-services';
// get a list of available sessions and connect to one
listRunningSessions({ baseUrl: 'http://localhost:8000' }
).then(sessionModels => {
var options = {
baseUrl: 'http://localhost:8000',
wsUrl: 'ws://localhost:8000',
kernelName: sessionModels[0].kernel.name,
notebookPath: sessionModels[0].notebook.path
}
connectToSession(sessionModels[0].id, options).then((session) => {
console.log(session.kernel.name);
});
});
// start a new session
var options = {
baseUrl: 'http://localhost:8000',
wsUrl: 'ws://localhost:8000',
kernelName: 'python',
notebookPath: '/tmp/foo.ipynb'
}
startNewSession(options).then((session) => {
// execute and handle replies on the kernel
var future = session.kernel.execute({ code: 'a = 1' });
future.onDone = () => {
console.log('Future is fulfilled');
}
// rename the notebook
session.renameNotebook('/local/bar.ipynb').then(() => {
console.log('Notebook renamed to', session.notebookPath);
});
// register a callback for when the session dies
session.sessionDied.connect(() => {
console.log('session died');
});
// kill the session
session.shutdown().then(() => {
console.log('session closed');
});
});
Comm
import {
getKernelSpecs, startNewKernel
} from 'jupyter-js-services';
var BASEURL = 'http://localhost:8888';
var WSURL = 'ws://localhost:8888';
// Create a comm from the server side.
//
// get info about the available kernels and connect to one
getKernelSpecs({ baseUrl: BASEURL }).then(kernelSpecs => {
return startNewKernel({
baseUrl: BASEURL,
wsUrl: WSURL,
name: kernelSpecs.default,
});
}).then(kernel => {
var comm = kernel.connectToComm('test');
comm.open('initial state');
comm.send('test');
comm.close('bye');
});
// Create a comm from the client side.
getKernelSpecs({ baseUrl: BASEURL }).then(kernelSpecs => {
return startNewKernel({
baseUrl: BASEURL,
wsUrl: WSURL,
name: kernelSpecs.default,
});
}).then(kernel => {
kernel.commOpened.connect((kernel, commMsg) => {
if (commMsg.target_name !== 'test2') {
return;
}
var comm = kernel.connectToComm('test2', commMsg.comm_id);
comm.onMsg = (msg) => {
console.log(msg); // 'hello'
}
comm.onClose = (msg) => {
console.log(msg); // 'bye'
}
});
var code = [
"from ipykernel.comm import Comm",
"comm = Comm(target_name='test2')",
"comm.send(data='hello')",
"comm.close(data='bye')"
].join('\n')
kernel.execute({ code: code });
});
Contents
import {
ContentsManager
} from 'jupyter-js-services';
var contents = new ContentsManager('http://localhost:8000');
// create a new python file
contents.newUntitled("/foo", { type: "file", ext: "py" }).then(
(model) => {
console.log(model.path);
}
);
// get the contents of a directory
contents.get("/foo", { type: "directory", name: "bar" }).then(
(model) => {
var files = model.content;
}
)
// rename a file
contents.rename("/foo/bar.txt", "/foo/baz.txt");
// save a file
contents.save("/foo", { type: "file", name: "test.py" });
// delete a file
contents.delete("/foo/bar.txt");
// copy a file
contents.copy("/foo/bar.txt", "/baz").then((model) => {
var newPath = model.path;
});
// create a checkpoint
contents.createCheckpoint("/foo/bar.ipynb").then((model) => {
var checkpoint = model;
// restore a checkpoint
contents.restoreCheckpoint("/foo/bar.ipynb", checkpoint.id);
// delete a checkpoint
contents.deleteCheckpoint("/foo/bar.ipynb", checkpoint.id);
});
// list checkpoints for a file
contents.listCheckpoints("/foo/bar.txt").then((models) => {
console.log(models[0].id);
});
Configuration
startNewKernel, getKernelSpecs, getConfigSection, ConfigWithDefaults
} from 'jupyter-js-services';
var BASEURL = 'http://localhost:8888';
var WSURL = 'ws://localhost:8888';
getKernelSpecs({ baseUrl: BASEURL }).then(kernelSpecs => {
return startNewKernel({
baseUrl: BASEURL,
wsUrl: WSURL,
name: kernelSpecs.default,
});
}).then(kernel => {
getConfigSection('notebook', BASEURL).then(section => {
var defaults = { default_cell_type: 'code' };
var config = new ConfigWithDefaults(section, defaults, 'Notebook');
console.log(config.get('default_cell_type')); // 'code'
config.set('foo', 'bar').then(data => {
console.log(data.foo); // 'bar'
});
});
});
FAQs
Client APIs for the Jupyter services REST APIs
The npm package jupyter-js-services receives a total of 252 weekly downloads. As such, jupyter-js-services popularity was classified as not popular.
We found that jupyter-js-services demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.