Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
438 B
15 lines
438 B
9 years ago
|
This directory contains Protocol Buffer support for JavaScript. This code works
|
||
|
in browsers and in Node.js.
|
||
|
|
||
|
The packaging work for this is still in-progress. For now you can just run the
|
||
|
tests. First you need to build the main C++ distribution because the code
|
||
|
generator for JavaScript is written in C++:
|
||
|
|
||
|
$ ./autogen.sh
|
||
|
$ ./configure
|
||
|
$ make
|
||
|
|
||
|
Then you can run the JavaScript tests in this directory:
|
||
|
|
||
|
$ cd js && gulp test
|