ibmcloudcode

1.0.1 • Public • Published

Mobile Cloud Services JavaScript SDK for cloud code

ATTENTION: This service is currently deprecated on Bluemix and will be completely removed shortly. Please use the 2nd generation of Bluemix MobileFirst Services.

This package contains the required native components to interact with the IBM Mobile Cloud Services for Bluemix. You can use the JavaScript SDK to build Web or Hybrid applications. You can also use this SDK in server-side Node.js JavaScript modules. The SDK manages all the communication and security integration between the client and the Mobile Cloud Services in Bluemix.

When you use Bluemix to create a Mobile Cloud application, BlueMix provisions multiple services under a single application context. Your mobile application is given access to the following mobile services: Mobile Application Security, Push, and Mobile Data.

Version: v1.0.0-20160421-1718

Install the SDK

You can install the SDK:

  • By installing the individual components with Bower or NPM. Use these tools to shorten the startup time for new projects and lessen the burden of managing library version requirements and dependencies. If you are using one of the Mobile Cloud samples, instructions for using the package manager is included with the documentation.
  • By downloading a zip file.

Get the SDK with Node.js (npm)

NPM is included in current Node.js distributions. To install Node.js, go to Download Node.js.

Run the following command to install the ibmcloudcode package:

npm install ibmcloudcode

Get the SDK for Web or Hybrid (Bower)

To install Bower, go to Download Bower.

Run the following command to install the ibmcloudcode package:

bower install https://hub.jazz.net/git/bluemixmobilesdk/ibmcloudcode-javascript/.git

Download zip file

To download a zip of the entire SDK, see Building Mobile Cloud applications.

Contents

The complete SDK consists of a core, plus a collection of modules that correspond to function exposed by the Mobile Cloud Services. The downloaded zip file contains all of them. However, each piece of the JavaScript SDK is also available as a separate module that you can add to your project individually. This allows maximum flexibility, as the developer is able to pick and choose the modules required for a given application.

The JavaScript SDK contains the following components, any of which may be added to your project.

  • ibmbluemix - This is the foundation of the SDK and controls connection and communication with Backend services
  • ibmpush - This is the service SDK for push notification support
  • ibmdata - This is the service SDK for cloud data storage
  • ibmcloudcode - This is the service SDK for cloud code invocation

Get started

Services are associated with a Mobile Cloud application. Connectivity and interaction with these services depends on the application ID, application secret, and application route associated with a Mobile Cloud Application.

The cloud code JavaScript SDK for IBM Bluemix can be used in a Web or Hybrid application. You can also use the SDK inside a server-side Node.js JavaScript module. Cloud code provides easy access to the cloud hosted logic and static resources in your Bluemix Mobile Cloud application.

An example of initializing the Mobile Cloud Services SDK and cloud code follows.

var config = {
  applicationId:"<ApplicationID>",
  applicationRoute:"<ApplicationRoute>",
  applicationSecret:"<ApplicationSecret>"
};
 
IBMBluemix.initialize(config);
var cc = IBMCloudCode.initializeService();

Learn More

To learn more about using the SDK, please consult the following resources:

Licensed Materials - Property of IBM (C) Copyright IBM Corp. 2013, 2015. All Rights Reserved. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

Terms of Use | Notices

Readme

Keywords

none

Package Sidebar

Install

npm i ibmcloudcode

Weekly Downloads

35

Version

1.0.1

License

none

Last publish

Collaborators

  • ibmmobilecloud