aboutsummaryrefslogtreecommitdiff
path: root/js/README.md
diff options
context:
space:
mode:
authorFeng Xiao <xiaofeng@google.com>2015-12-28 14:00:59 -0800
committerFeng Xiao <xiaofeng@google.com>2015-12-28 14:00:59 -0800
commit7f82325998a1812c119eb8894bc3bee21dd99628 (patch)
treeee36a93ccb886ef2ce0a92086d71de615b9042f2 /js/README.md
parent27b2423d6a73f0a3c9f05021052067a485a84397 (diff)
parent0d2d8bc10843bcd6c6c68421fe64e90ed13c0c07 (diff)
downloadprotobuf-7f82325998a1812c119eb8894bc3bee21dd99628.tar.gz
protobuf-7f82325998a1812c119eb8894bc3bee21dd99628.tar.bz2
protobuf-7f82325998a1812c119eb8894bc3bee21dd99628.zip
Merge pull request #1071 from haberman/js-tests
Enabled JavaScript tests and added README.md.
Diffstat (limited to 'js/README.md')
-rw-r--r--js/README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/README.md b/js/README.md
new file mode 100644
index 00000000..fc144a3d
--- /dev/null
+++ b/js/README.md
@@ -0,0 +1,14 @@
+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