0.1.3 • Published 5 years ago

pull-protocol-buffers v0.1.3

Weekly downloads
14
License
MIT
Repository
github
Last release
5 years ago

pull-protocol-buffers

Greenkeeper badge

Build Status codecov

Protocol Buffers length-prefixed pull-stream encoder/decoder

API

  • ppb.encode(proto)

    Encodes messages that come in

    proto: The Protocol buffers message

    returns: A length-prefixed duplex

  • ppb.decode(proto)

    Decodes protocol-buffers that come in

    proto: The Protocol buffers message

    returns: A length-prefixed duplex

  • .pull

    The same api as above just without length-prefixing.

    Not network safe. Useful for encoding/decoding single messages.