Socket
Socket
Sign inDemoInstall

simple-message-channels

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-message-channels

Simple streamable state machine that implements a useful channel, message-type, message pattern


Version published
Maintainers
1
Created
Source

simple-message-channels

Simple streamable state machine that implements a useful channel, message-type, message pattern

npm install simple-message-channels

Build Status

Usage

const SMC = require('simple-message-channels')

const a = new SMC({
  onmessage (channel, type, message) {
    console.log('Received a message on channel', channel) // a number
    console.log('Message type is', type) // a number
    console.log('And the message payload was', message) // a buffer
  }
})

const b = new SMC()

// produce a payload
const payload = b.send(0, 1, Buffer.from('hi'))

// somehow send it to the other instance (over a stream etc)
// can arrive chunked as long as it arrives in order
a.recv(payload)

(This is the basic wire protocol used by hypercore, https://github.com/mafintosh/hypercore)

API

payloadBuffer = smc.send(channel, type, message)

Encode a channel, type, message to be sent to another person. Channel can be any number and type can be any 4 bit number. Message should be a buffer.

success = smc.recv(payloadChunk)

Parse a payload buffer chunk. Once a full message has been parsed the smc.onmessage(channel, type, message) handler is called.

Returns true if the chunk seemed valid and false if not. If false is returned check smc.error to see the error it hit.

payloadBuffer = smc.sendBatch([{ channel, type, message }, ...])

Encodes a series of messages into a single paylaod buffer.

License

MIT

FAQs

Package last updated on 09 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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