Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rx-jupyter

Package Overview
Dependencies
Maintainers
4
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rx-jupyter - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

5

lib/base.js

@@ -25,3 +25,6 @@ "use strict";

url: url,
responseType: "json"
responseType: "json",
createXHR: function createXHR() {
return new XMLHttpRequest();
}
}, serverConfig, opts, {

@@ -28,0 +31,0 @@ // Make sure we merge in the auth headers with user given headers

6

lib/kernels.js

@@ -23,3 +23,3 @@ "use strict";

var _url = require("url");
var URLSearchParams = require("url-search-params");

@@ -45,4 +45,2 @@ /**

*/
function get(serverConfig, id) {

@@ -116,3 +114,3 @@ return (0, _ajax.ajax)((0, _base.createAJAXSettings)(serverConfig, "/api/kernels/" + id));

function formWebSocketURL(serverConfig, kernelID, sessionID) {
var params = new _url.URLSearchParams();
var params = new URLSearchParams();
if (serverConfig.token) {

@@ -119,0 +117,0 @@ params.append("token", serverConfig.token);

{
"name": "rx-jupyter",
"version": "2.1.0",
"version": "2.1.1",
"description": "RxJS 5 bindings for the Jupyter Notebook API",

@@ -55,4 +55,5 @@ "main": "lib/index.js",

"dependencies": {
"rxjs": "^5.5.0"
"rxjs": "^5.5.0",
"url-search-params": "^0.10.0"
}
}

@@ -22,3 +22,6 @@ // @flow

url,
responseType: "json"
responseType: "json",
createXHR: function() {
return new XMLHttpRequest();
}
},

@@ -25,0 +28,0 @@ serverConfig,

@@ -9,3 +9,3 @@ // @flow

import { URLSearchParams } from "url";
const URLSearchParams = require("url-search-params");

@@ -12,0 +12,0 @@ /**

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc