Package Exports
- kinvey-html5-sdk
- kinvey-html5-sdk/dist/cache
- kinvey-html5-sdk/dist/device
- kinvey-html5-sdk/dist/http
- kinvey-html5-sdk/dist/indexeddb
- kinvey-html5-sdk/dist/popup
- kinvey-html5-sdk/dist/websql
- kinvey-html5-sdk/dist/webstorage
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (kinvey-html5-sdk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Kinvey Html5 SDK
Kinvey (pronounced Kin-vey, like convey) makes it ridiculously easy for developers to setup, use and operate a cloud backend for their mobile apps. They don't have to worry about connecting to various cloud services, setting up servers for their backend, or maintaining and scaling them.
This node and bower module makes it very easy to connect your Html5 app with Kinvey.
How to use
1. Sign up for Kinvey
To use the SDK, sign up for Kinvey if you have not already done so. Go to the sign up page, and follow the steps provided.
2. Install the SDK
You can install the module using npm:
npm install kinvey-html5-sdk --saveor
bower install kinvey-html5-sdk --save3. Configure the SDK
If you installed the SDK with npm, import the library in your code using require.
var Kinvey = require('kinvey-html5-sdk');If you installed the SDK with bower, add a script tag to your main html file.
<script src="bower_components/kinvey-html5-sdk/dist/kinvey-html5-sdk.min.js"></script>Next, use Kinvey.init to configure your app. Replace <appKey> and <appSecret> with your apps app key and secret. You can find these for your app using the Kinvey Console App.
Kinvey.init({
appKey: '<appKey>',
appSecret: '<appSecret>'
});4. Verify Set Up
You can use the following snippet to verify the app credentials were entered correctly. This function will contact the backend and verify that the SDK can communicate with your app.
Kinvey.ping().then(function(response) {
console.log('Kinvey Ping Success. Kinvey Service is alive, version: ' + response.version + ', response: ' + response.kinvey);
}).catch(function(error) {
console.log('Kinvey Ping Failed. Response: ' + error.message);
});What’s next?
You are now ready to start building your awesome apps! Next we recommend diving into the User guide or Data store guide to learn more about our service, or explore the sample apps to go straight to working projects.
Build
The simplest way to build the sdk is by running gulp. More advanced tasks are available.
gulp build: build the sdkgulp bump: bump the pacakge version. Please see Flags.gulp bundle: bundle the sdk for distgulp clean: remove files created by the build processgulp lint: lint the src filesgulp tag: create a git tag for the versiongulp upload: upload dist files to AWS S3
Flags
The following flags are available when running gulp bump:
--type <major|minor|patch|prerelease>: Bumps the package version using the Semantic Version 2.0.0 spec. Defaults topatch.--version <version>: Sets the package version to the provided version.
Test
You can run the tests using npm test.
Release
The workflow for releasing a new version of the sdk is as follows:
- Commit all changes on the develop branch.
- Checkout the master branch and merge the develop branch.
- Update the Changelog.
- Run
gulp bump --type <type>replacing<type>with major, minor, patch, or prerelease. See Flags above. - Run
gulp bundleand commit file changes. - Run
gulp tag. - Make sure all changes are committed on the master branch and push.
- Checkout the develop branch and merge the master branch.
- Optional: Update Dev Center and Sample apps.
Note: The HTML5 Release Job will upload the build to AWS S3 and publish the pacakge on NPM.
License
Copyright 2016 Kinvey, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.