Paul
Paul

Reputation: 437

Azure Mobile App javascript Cordova client

I am developing App using Cordova and want to try using Azure App Service's Mobile App. But from this official document

https://azure.microsoft.com/en-us/documentation/articles/app-service-mobile-dotnet-backend-xamarin-ios-get-started-preview/

it contains iOS/Xamerin/WinApp/Android but javascript example.

My questions are:

  1. Does the javascript version of Azure Mobile App client exist?
  2. Is the client SDK the same with Mobile Service javascript client?
  3. Is there tutorial of Mobile App javascript client?

thanks a lot.

Upvotes: 0

Views: 390

Answers (1)

user793891
user793891

Reputation:

Currently, the Mobile Apps service is in preview and not all features have been implemented yet.

Yes, the client SDK is the same as with Mobile Services. If you download the HTML quickstart client from your Mobile App, you'll see that the html page references the same library: MobileServices.Web-2.0.0-beta.min.js

You didn't asked for the backend but anyways...Note that a major drawback currently for JS developers is the fact the you can't create a Node backend for Mobile Apps yet.

Upvotes: 3

Related Questions