commit | 6880860de10e0ef896d0f9b881ae3a9e57475f8f | [log] [tgz] |
---|---|---|
author | Jatin Lodhia <jlodhia@google.com> | Mon Oct 26 11:31:49 2015 -0700 |
committer | Jatin Lodhia <jlodhia@google.com> | Mon Oct 26 11:31:49 2015 -0700 |
tree | a46e033fd64f29b9f952da2b4c22cf816216d08d | |
parent | 7ef956ecf5ea20998ea7fbc30988cce6d86edd4e [diff] |
js.syncbase: Rename struct SyncgroupPrefix to a more generic 'TableRow' MultiPart: 4/8 Change-Id: Id56d53e5d7d2bcc105a8c65956f6bb01260a6987
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