SDK Download And Install
Hamoni Sync currently only provides SDK for JavaScript but Swift and Java SDKs will be available soon.
JavaScript SDK
The latest version is made available on npm and unpkg.com CDN . To include it on your web page use a script tag like the following
<script src="https://unpkg.com/hamoni-sync@1.1.1/hamoni.dev.js"></script>
<!-- OR -->
<script src="https://unpkg.com/hamoni-sync@1.1.1/hamoni.prod.js"></script>
https://unpkg.com/hamoni-sync@1.1.1/hamoni.dev.js
allows you to see debug messages while https://unpkg.com/hamoni-sync@1.1.1/hamoni.prod.js
doesn't. It is recommended to use the production file when deploying your apps to production
You can also it from npm. The package name is hamoni-sync
on npm. Use the following command to install to the latest from npm:
npm install -S hamoni-sync
See the live dashboard example which uses the SDK via a script tag and the React datagrid example which uses the npm version.
Swift SDK
Coming soon...
Java SDK
Coming soon....