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

socket.io-client

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socket.io-client - npm Package Compare versions

Comparing version 1.0.0-pre to 1.0.0-pre2

10

History.md
1.0.0-pre2 / 2014-04-27
=======================
* package: bump `engine.io-client`
* package: bump `zuul`
* allows user-level query string parameters to be in socket.request
* package: bump `socket.io-parser`
* package: bump `engine.io-client` for android fix
* tidy up .gitignore
1.0.0-pre / 2014-03-14

@@ -3,0 +13,0 @@ ======================

10

lib/index.js

@@ -45,3 +45,3 @@

var parsed = url(uri);
var href = parsed.href;
var source = parsed.source;
var id = parsed.id;

@@ -51,8 +51,8 @@ var io;

if (opts.forceNew || false === opts.multiplex) {
debug('ignoring socket cache for %s', href);
io = Manager(href, opts);
debug('ignoring socket cache for %s', source);
io = Manager(source, opts);
} else {
if (!cache[id]) {
debug('new io instance for %s', href);
cache[id] = Manager(href, opts);
debug('new io instance for %s', source);
cache[id] = Manager(source, opts);
}

@@ -59,0 +59,0 @@ io = cache[id];

{
"name": "socket.io-client",
"version": "1.0.0-pre",
"version": "1.0.0-pre2",
"keywords": [

@@ -13,7 +13,7 @@ "realtime",

"dependencies": {
"engine.io-client": "1.0.4",
"engine.io-client": "1.1.0",
"emitter": "http://github.com/component/emitter/archive/1.0.1.tar.gz",
"bind": "http://github.com/component/bind/archive/0.0.1.tar.gz",
"object-component": "0.0.3",
"socket.io-parser": "2.1.1",
"socket.io-parser": "2.1.3",
"parseuri": "0.0.2",

@@ -26,5 +26,5 @@ "to-array": "0.1.3",

"devDependencies": {
"socket.io": "1.0.0-pre",
"socket.io": "1.0.0-pre2",
"mocha": "1.16.2",
"zuul": "1.5.4",
"zuul": "1.6.3",
"istanbul": "0.2.1",

@@ -31,0 +31,0 @@ "expect.js": "0.2.0",

Sorry, the diff of this file is too big to display

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