commit | 50fa7a15f13d8219382ee3c5e34e377348d9a3e9 | [log] [tgz] |
---|---|---|
author | Nicolas Lacasse <nlacasse@google.com> | Mon Apr 04 16:09:34 2016 -0700 |
committer | Nicolas Lacasse <nlacasse@google.com> | Mon Apr 04 16:09:34 2016 -0700 |
tree | e0e6c6b96df5bf77d0089f646af1f6b992ac7d13 | |
parent | 98fd386bfcc919660b58ec57d59ce097bb6ce6c3 [diff] |
TBR: js.syncbase: Make all versions 'v23-0.1'. Change-Id: I9e66bd11daa526f03697a625b2a98fee9e815f54 MultiPart: 9/27
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