Introduction
This is the JavaScript and NodeJS SDK for CloudBoost. It is available both on NPM and Bower. If you want to have a look into documentation, you can check them out here : https://tutorials.cloudboost.io and API reference is available here : https://docs.cloudboost.io
NPM Installation
npm install cloudboost
NodeJS Usage
var CB = ;
Bower Installation
bower install cloudboost
JavaScript Usage
<script src="bower_components/cloudboost/dist/cloudboost.js"></script>
Module Bundlers
// For ES6/ES7 , TypeScript(typings included);//For ES5 (requireJs)var CB = ;
Sample Code
// AppID and AppKey are your App ID and key of the application created in CloudBoost Dashboard.//Init your ApplicationCBCloudApp;//Data Storage : Create a CloudObject of type 'Custom' (Note: You need to create a table 'Custom' on CloudBoost Dashboard)var obj = 'Custom';//Set the property 'name' (Note: Create a column 'name' of type text on CloudBoost Dashboard)obj;//Save the objectobj;

Getting Started and Tutorials
Visit Getting Started for tutorial and quickstart guide.
API Reference
Visit CloudBoost Docs for API Reference.