commit | 4349d154b3ff7312904c52d5c6641382c8902ffb | [log] [tgz] |
---|---|---|
author | Ivan Pilat <ivanpi@google.com> | Wed Feb 24 19:31:35 2016 -0800 |
committer | Ivan Pilat <ivanpi@google.com> | Wed Feb 24 19:31:35 2016 -0800 |
tree | d4d1436b58cfa99aedf3e803f0397be300e585a9 | |
parent | 107145c1892329a0f4108f975f0066de25dc6489 [diff] |
syncbase/exec: Expose support for parameterized queries. Allow Syncbase to accept parameterized queries, with '?' placeholders in the where clause. MultiPart: 4/5 Change-Id: Icde606faf4806bcb2da9879376e0eecdc9f92861
This repository defines the JavaScript API for Syncbase, a structured store that supports peer-to-peer synchronization.
The client APIs defined here work both in Node.js and the browser.
npm install --save vanadium/js.syncbase
Documentation for this API is [TODO(aghassemi)](LINK TO JS DOCUMENTATION)
Tutorials can be found at [TODO(aghassemi)](LINK TO JS TUTORIAL FOR SYNCBASE)
The entry point to the API is through a module called syncbase
, everything else is considered private and should not be accessed by the users of the API.
When using Browserify or Node.js users can gain access to the API with:
var syncbase = require("syncbase");
When run in a browser, syncbase expects that the vanadium extension will be installed.
Bugs and feature requests should be filed in the Vanadium issue tracker.
GNU Make is used to build and test Syncbase.
Build everything:
make
Test everything:
make test
Run a specific test suite:
make test-integration make test-integration-node make test-integration-browser
Remove all build and testing artifacts:
make clean