JSPM

sc-codec-pbf

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q24576F
  • License MIT

Minimal binary codec for SocketCluster based on pbf

Package Exports

  • sc-codec-pbf

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (sc-codec-pbf) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

sc-codec-pbf

Minimal binary codec for SC based on pbf.
This codec helps reduce bandwidth usage and is ideal for games and other high-throughput applications.

This module is designed to be hooked up on both the client and server.

This codec also assumes you're using one proto message type per SocketCluster client/worker instance for maximum efficiency.

To install, use:

npm install --save sc-codec-pbf

Install pbf and compile a JavaScript module from a .proto file:

# example.proto
message Example {
  int64 x = 1;
  int64 y = 2;
  string playerID = 3;
  PlayerState playerState = 4;
  enum PlayerState {
    MOVING = 0;
    TALKING = 1;
    IN_COMBAT = 2;
  }
}
$ npm install -g pbf
$ pbf example.proto > example.js

On the server, inside worker.js, you should use:

var scCodecPbf = require('sc-codec-pbf');

// ...pbf
// This needs to go inside the run function - Near the top.
var Example = require('./example.js').Example;
worker.scServer.setCodecEngine(new scCodecPbf(Example));

On the client-side, you can either include the sc-codec-pbf module using your favorite bundler such as Browserify or Webpack or you can include the sc-codec-pbf.js file using a script tag; this will expose the scCodecPbf object globally. To use it, you just need to add it on connect:

var socket = socketCluster.connect({
  // ...
  codecEngine: new scCodecPbf(Example)
});

Note that the codec used on the client and on the server always need to match.


Contributing

To build the global script for the browser:

browserify -s scCodecPbf index.js > sc-codec-pbf.js