On Sat, Jul 15, 2017 at 8:28 PM, hce h <[email protected]> wrote:
> Hi, > > We are using javascript for web front end development and we are using the > protobuf to communicate with backend web applications. Currently we are > using GO to do protobuf communication between the backend application > server which runs on C++ and the front end running on Javascript, but I've > just found there is a protobuf interface for Javascript as well, we can > actually simplify the process directly to use javascript to fetch the > protobuf messages with backend application without GO. Is it a good idea? I > have since been investigating the javascript protobuf capability but I > could not find javascript progotbuf examples and tutorials, the link > https://developers.google.com/protocol-buffers/docs/tutorials shows > tutorials for every program language except javascript. Appriciate anyone > could point me likes for Javascript prototobuf examples and tutorials. > > I have also downloaded protobuf-js-3.3.0.zip, but it looks like it is > similar to > <https://github.com/google/protobuf/releases/download/v3.3.0/protobuf-js-3.3.0.zip>protobuf-cpp-3.3.0.tar.gz > which I built on Linux platform, I guess the > <https://github.com/google/protobuf/releases/download/v3.3.0/protobuf-cpp-3.3.0.tar.gz>protobuf-js-3.3.0.zip > is not the binary for javascript, link the C++ I need to build it as well, > correct? > <https://github.com/google/protobuf/releases/download/v3.3.0/protobuf-js-3.3.0.zip> > protobuf-js-3.3.0.zip is the original source code for C++ + Javascript. If you only need the already-built protobuf js package, try npm google-protobuf: https://www.npmjs.com/package/google-protobuf Note that you will need to download protoc binary to do the code generation. > > > Thank you. > > Kind regards, > > - j > > <https://github.com/google/protobuf/releases/download/v3.3.0/protobuf-js-3.3.0.zip> > > -- > You received this message because you are subscribed to the Google Groups > "Protocol Buffers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/protobuf. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/protobuf. For more options, visit https://groups.google.com/d/optout.
