1.0.2 • Published 8 months ago

from-protobuf-object v1.0.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
8 months ago

from-protobuf-object

fromObject method for grpc-web

In general that is opposite for 'toObject' method in protobufjs.

Supports:

  • Simple keys
  • Repeated
  • OneOf
  • Protobuf Map
  • Recursive messages
  • Type validation (at runtime)
  • TypeScript
  • Missing keys validation

Installation

npm i from-protobuf-object

Usage

import { fromProtobufObject } from 'from-protobuf-object';
import { MyMessage } from './my-message_pb';

const myMessage = fromProtobufObject(MyMessage, {
    keyOne: 1,
    keyTwo: 'foo',
    keyThree: {
        keyA: 2,
        keyB: 'bar',
    },
});

Contributing

Contributions are always welcome!

License

Apache-2.0