NativeScript provides platform APIs directly to the JavaScript runtime (''with strong types'') for a rich TypeScript development experience. As an
open-source framework to develop
apps for
iOS,
visionOS and
Android platforms combining a best of all worlds approach marrying familiar Web approaches like CSS and view templating with common platform languages (Swift, Kotlin, Objective-C, Java) it delivers a liberating toolset for developers. It was originally conceived and developed by Bulgarian company
Telerik, later acquired by
Progress Software
Progress Software Corporation is an American public company that produces software for creating and deploying business applications. Founded in Burlington, Massachusetts with offices in 16 countries, the company posted revenues of $531.3 mill ...
. At the end of 2019 responsibility for the NativeScript project was taken over by long-time Progress partner
nStudio In December 2020
nStudioalso oversaw the induction of NativeScript int
OpenJS Foundationas an Incubating Project. NativeScript apps are built using
JavaScript
JavaScript (), often abbreviated as JS, is a programming language and core technology of the World Wide Web, alongside HTML and CSS. Ninety-nine percent of websites use JavaScript on the client side for webpage behavior.
Web browsers have ...
, or by using any
programming language
A programming language is a system of notation for writing computer programs.
Programming languages are described in terms of their Syntax (programming languages), syntax (form) and semantics (computer science), semantics (meaning), usually def ...
that
transpiles to JavaScript, such as
TypeScript
TypeScript (abbreviated as TS) is a high-level programming language that adds static typing with optional type annotations to JavaScript. It is designed for developing large applications and transpiles to JavaScript. It is developed by Micr ...
. NativeScript supports the
Angular and
Vue JavaScript frameworks.
Mobile applications built with NativeScript result in fully native apps, which use the same APIs as if they were developed in
Xcode or
Android Studio
Android Studio is the official integrated development environment (IDE) for Google's Android operating system, built on JetBrains' IntelliJ IDEA software and designed specifically for Android development. This is available for download on W ...
. Additionally, software developers can re-purpose third-party libraries from
CocoaPods,
Maven, and
npm.js in their mobile applications without the need for wrappers.
Development
NativeScript was publicly released first in March 2015. Version 1.0.0 followed two months later. The framework quickly gained popularity reaching 3000 github-stars and over 1500 followers on Twitter soon after the public release. In the meantime, over 700 plugins are available, which are either officially supported by Progress or stem from the open source community. The use of Angular is an optional development approach allowing for application source code to be shared between the web platform and mobile platform.
Structure
NativeScript and all the required plugins are installed using the package manager
npm. Projects are created, configured, and compiled via the command line or a GUI tool called NativeScript Sidekick.
Platform-independent user interfaces are defined using
XML
Extensible Markup Language (XML) is a markup language and file format for storing, transmitting, and reconstructing data. It defines a set of rules for encoding electronic document, documents in a format that is both human-readable and Machine-r ...
files. NativeScript then uses the abstractions described in the XML files to call native UI elements of each platform. Application logic developed in Angular and TypeScript can be developed independent of the target platform as well. A NativeScript mobile application is built using the node.js runtime and tooling.
Progress aims for a ratio of 90% common code between the iOS and Android platforms.
Direct access to native platform APIs and controls
Platform-independent user interfaces are defined using
XML
Extensible Markup Language (XML) is a markup language and file format for storing, transmitting, and reconstructing data. It defines a set of rules for encoding electronic document, documents in a format that is both human-readable and Machine-r ...
files. NativeScript uses the XML data structures representing the cross platform abstraction to trigger platform-specific code that directly interacts with the native elements of the target operating system. This means a call to the NativeScript Button API provides a UI abstraction for Button, which directly calls UIButton on iOS or com.android.widget.Button on Android.
While application source code is written in JavaScript, TypeScript, Angular, or Vue.js, the source code is not compiled or otherwise mutated. The source code as-is runs directly on the device. This architectural choice eliminates the need for cross-compiling or transpiling.
Additionally, while the application source code is written in languages commonly encountered in a browser (or in a WebView-contained mobile application) NativeScript applications run directly on the native device. There is no DOM manipulation or any mandatory browser interaction.
[
]
Notable features
Native API reflection
Another notable feature is the use of reflection to handle native API endpoints. Rather than requiring separate binding layers between NativeScript and each mobile platform API, NativeScript uses reflection to gain information and metadata about the native platform APIs. New features added to any native platform API are available immediately.[
Another way the reflection feature is used is in working with third party libraries. As JavaScript (or TypeScript/Angular) can talk directly to native code, there is no need to write binding layers in Objective-C, Swift, Java or Kotlin.]
Angular integration
With the launch of NativeScript 2.0, it is possible to use Angular to build cross-platform mobile applications. Additionally, when using Angular with NativeScript you have the ability to share large chunks of code between your web and mobile apps.
Vue.js integration
The Vue.js framework is supported in NativeScript via the nativescript-vue plugin.
Supporting tools and services
* NativeScript Sidekick is a graphical user interface
A graphical user interface, or GUI, is a form of user interface that allows user (computing), users to human–computer interaction, interact with electronic devices through Graphics, graphical icon (computing), icons and visual indicators such ...
that builds off of the capabilities provided by the NativeScript CLI. With Sidekick a developer can leverage app templates, cloud-based builds for iOS and Android, and publish apps to the public app stores.
* NativeScript Playground allows developers to experiment with NativeScript in a web-based environment, and preview apps on physical devices.
* NativeScript Marketplace is a curated source of NativeScript plugins, pre-built app templates, and runnable sample apps.
References
External links
*
{{ECMAScript
Rich web application frameworks
2014 software
Software using the Apache license
Mobile software programming tools