So, What is IBM MobileFirst?
I’m still “the new guy” on the MobileFirst team here at IBM, and right away I’ve been asked by peers outside of IBM: “So, what exactly is MobileFirst/Worklight? Is it just for hybrid apps?” In this post I’ll try to shed some light on IBM MobileFirst, and for starters, it is a lot more than just hybrid apps. IBM MobileFirst Platform is a suite of products that enable you to efficiently build and deliver mobile applications for your enterprise, and is composed of three parts: IBM MobileFirst Platform Foundation IBM MobileFirst Platform Application Scanning IBM MobileFirst Quality Assurance IBM MobileFirst Platform Foundation IBM MobileFirst Platform Foundation (formerly known as Worklight Foundation) is a platform for building mobile applications for the enterprise. It is a suite of tools and services available either on-premise or in the cloud, which enable you to rapidly build, administer, and monitor secure applications. The MobileFirst Platform Foundation consists of: MobileFirst Server – the middleware tier that provides a gateway between back-end systems and services and the mobile client applications. The server enables application authentication, data endpoints/services, data optimization and transformation, push notification management (streamlined API for all platforms), consolidated logging, and app/services analytics. For development purposes, the MobileFirst server is available as either part of the MobileFirst Studio (discussed below), or as command line tools. MobileFirst API - both client and server-side APIs for developing and managing your enterprise mobile applications. The server-side API enables you to expose data adapters to your mobile applications – these adapters could be consuming data from SQL databases, REST or SOAP Services, or JMS data sources. The Server side API also provides a built-in security framework, unified push notifications (across multiple platforms), and data translation/transformation services. You can leverage the server-side API in JavaScript, or dig deeper and use the Java implementation. The client-side API is available for native iOS (Objective-C), native Android (Java), J2ME, C# native Windows Phone (C#), and JavaScript for cross-platform hybrid OR mobile-web applications. For the native implementations, this includes user authentication, encrypted storage, push notifications, logging, geo-notifications, data access, and more. For hybrid applications, it includes everything from the native API, plus cross-platform native UI components and platform specific application skinning. With the hybrid development approach, you can even push updates to your applications that are live, out on devices, without having to push an update through an app store. Does the hybrid approach leverage Apache Cordova? YES. MobileFirst Studio - an optional all-inclusive development environment for developing enterprise apps on the MobileFirst platform. This is based on the Eclipse platform, and includes an integrated server, development environment, facilities to create and test all data adapters/services, a browser-based hybrid app simulator, and the ability to generate platform-specific applications for deployment. However, using the studio is not required! Try to convince a native iOS (Xcode) developer that they have to use Eclipse, and tell me how that goes for you… If you don’t want to use the all-inclusive studio, no problem. You can use the command line tools (CLI). The CLI provides a command line interface for managing the MobileFirst server, creating data adapters, creating the encrypted JSON store, and more. MobileFirst Console – the console provides a dashboard and management portal for everything happening within your MobileFirst applications. You can view which APIs and adapters have been deployed, set app notifications, manage or disable your apps, report on connected devices and platforms, monitor push notifications, view analytics information for all services and adapters exposed through the MobileFirst server, and manage remote collection of client app logs. All together, an extremely powerful set of features for monitoring and managing your applications. MobileFirst Application Center - a tool to make sharing mobile apps easier within an organization. Basically, it’s an app store for your enterprise. MobileFirst Platform Application Scanning MobileFirst Platform Application Scanning is set of tools that can scan your JavaScript, HTML, Objective-C, or Java code for security vulnerabilities and coding best practices. Think of it as a security layer in your software development lifecycle. MobileFirst Quality Assurance MobileFirst Quality Assurance is a set of tools and features to help provide quality assurance to your mobile applications. It includes automated crash analytics, user feedback and sentiment analysis, in-app bug reporting, over-the-air build distribution to testers, test/bug prioritization, and more. So, is MobileFirst/Worklight just for hybrid (HTML/JS) apps? You tell me… if you need clarification more information, please re-read this post and follow all the links.
November 21, 2014
·
5,948 Views
·
1 Like
Comments
Dec 18, 2015 · Tim Spann
A new beta IBM Watson SDK for iOS was actually just released today. You can check it out here: https://developer.ibm.com/swift/2015/12/18/introducing-the-new-watson-sdk-for-ios-beta/
Oct 21, 2015 · John Walter
I think you're missing the point of this article. It is not to compare languages feature by feature, or to proclaim that one language is superior to another. Each language has their advantages and disadvantages, as I mentioned in the article above (TypeScript, JavaScript, Java, C#, Python, Swift, Objective-C, C, etc... included). The point is that you can use JavaScript virtually everywhere - It is nearly ubiquitous. It is a skill you can learn once, and reuse all over the place, and it is applicable and aproachable for everyone from beginners to seasoned developers.
Oct 19, 2015 · John Walter
No, TypeScript is JavaScript.
From http://www.typescriptlang.org/
"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
Any browser. Any host. Any OS. Open Source."
From https://github.com/Microsoft/TypeScript
"TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. "
More detail from https://en.wikipedia.org/wiki/TypeScript
"TypeScript adds support for features such as classes, modules and an arrow function syntax as proposed in the upcoming ECMAScript 6 standard."
and
" It is a strict superset of JavaScript, and adds optional static typing and class-based object-oriented programming to the language."
Oct 16, 2015 · John Walter
TypeScript == ECMAScript == JavaScript... They're different dialects of the same language. TS=ES6, JS=ES5. Besides, TS is an abstraction layer. Yes, it makes things easier, but you better also understand what it transpiles down to at execution time (JavaScript)