Is it a good choice to use google protocol buffers in javascript. Or is it better to do it with JSON. Also if someone can give me a simple example about protocol buffers implementation in javascript. Cuz on google's site i think it's very poor
|
|
The official protobuf project support only Java, C++, and Python. Not Javascript. According to the Wiki of the project, there are two projects porting protocol buffers to Javascript.
protobuf-js has not been updated for two years, so I would favor protojs. The question still is "Why"?: protobuf may be a bit smaller, especially when a lot of numeric values are transferred, but JSON is simply the more common protocol in the JS space and probably better supported and easier to integrate into other tools. |
|||||||||||
|
|
https://github.com/dcodeIO/ProtoBuf.js A protobuf implementation including a .proto parser, reflection, message class building and simple encoding and decoding in plain JavaScript. No compilation step required, works out of the box on .proto files. |
|||
|
|
|
Try Protostuff: http://code.google.com/p/protostuff/ I had a bit of hard time configuring but I'm sure that was more of my issue. You can serialize/deserialize a protobuff/protostuff message to/from JSON. I'm at the early stages of using this but it looks promising so far. |
|||
|