0.2.1 • Published 4 years ago

it-protocol-buffers v0.2.1

Weekly downloads
6,473
License
MIT
Repository
github
Last release
4 years ago

it-protocol-buffers

Greenkeeper badge

Build Status codecov

Protocol Buffers length-prefixed async-iterator encoder/decoder

API

  • ppb.encode(proto)

    Encodes messages that come in

    proto: The Protocol buffers message

    returns: An async-iterator length-prefixed duplex

  • ppb.decode(proto)

    Decodes protocol-buffers that come in

    proto: The Protocol buffers message

    returns: An async-iterator length-prefixed duplex

  • .it

    The same api as above just without length-prefixing.

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