Permalink
Please sign in to comment.
Browse files
Use LZMA compression for PPU:Initialize message.
Websocket connection is being dropped when deployed on Nodejitsu, presumably due to the large size of the PPU:Initialize packet.
- Loading branch information...
Showing
with
3,851 additions
and 11 deletions.
- +13 −6 package.json
- +2 −0 public/js/joynes/base.js
- +4 −2 public/js/joynes/master.js
- +1 −0 public/js/joynes/slave.js
- +3,826 −0 public/js/lzma_worker.js
- +4 −3 views/index.ejs
- +1 −0 views/layout.ejs
19
package.json
@@ -1,11 +1,18 @@ | ||
{ | ||
- "name":"joynes", | ||
- "version":"0.0.1a", | ||
- "main":"main", | ||
- "dependencies": | ||
- { | ||
+ "name": "joynes", | ||
+ "version": "0.0.1a", | ||
+ "main": "main", | ||
+ "dependencies": { | ||
"express": "~2.5", | ||
"ejs": "~0.6", | ||
- "socket.io": "~0.8" | ||
+ "socket.io": "~0.8", | ||
+ "lzma": "~1.2" | ||
+ }, | ||
+ "subdomain": "joynes", | ||
+ "scripts": { | ||
+ "start": "server.js" | ||
+ }, | ||
+ "engines": { | ||
+ "node": "0.6.x" | ||
} | ||
} |

Oops, something went wrong.
0 comments on commit
6a772f8