@barbastudio/hemera-snappy

1.1.1 • Public • Published

Hemera-snappy package

This is modified fork of hemera-snappy.

This is a plugin to use Google Snappy with Hemera.

Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression.

Example

'use strict';

const Hemera = require('nats-hemera');
// Use NATS driver >= 0.7.2
const nats = require('nats').connect({ 
  // otherwise NATS will interpret all data as LATIN1 (binary encoding)
  preserveBuffers: true
});
const HemeraSnappy = require('@barbastudio/hemera-snappy');

const hemera = new Hemera(nats, {
  logLevel: 'info'
});

hemera.use(HemeraSnappy);

hemera.ready(() => {
  hemera.add({
    topic: 'math',
    cmd: 'add'
  }, (req, cb) => {

    cb(null, req.a + req.b)
  });

  hemera.act({
    topic: 'math',
    cmd: 'add',
    a: 1,
    b: 20
  }, function (err, resp) {

    this.log.info('Result', resp)
  });
});

Readme

Keywords

none

Package Sidebar

Install

npm i @barbastudio/hemera-snappy

Weekly Downloads

511

Version

1.1.1

License

MIT

Unpacked Size

3.69 kB

Total Files

4

Last publish

Collaborators

  • barbastudio