Develop apps using OpenUI5 and the development environment (editor and Web server) of your choice. You can either download all of the sources or refer to the online version of OpenUI5.
Go to http://openui5.org/download.html#stableRelease and choose Download OpenUI5 Runtime to download a ZIP file containing the OpenUI5 sources.
Unzip this file and put the entire content on the Web server where your application is running (or you can even package it within your application to deploy it along with the app).
In your application’s main HTML file, load OpenUI5 by referring to the resources/sap-ui-core.js file that was contained in the ZIP file. (See Standard Variant for Bootstrapping.)
If you don't want to download the files and don't want to include them in your deployment, you can use the online version of OpenUI5. For more information, see Variant for Bootstrapping from Content Delivery Network.
You can find a list of all available OpenUI5 versions here: https://sdk.openui5.org/versionoverview.html.
Only use the Stable version for productive apps. Nevertheless, if you also want to test the Preview version, you are very welcome to send us your feedback!
#!js{
"name": "some-openui5-app",
"description": "Sample of an OpenUI5 app",
"private": true,
"dependencies": {
"openui5-sap.ui.core": "openui5/packaged-sap.ui.core#~1.28.10",
"openui5-sap.m": "openui5/packaged-sap.m#~1.28.10",
"openui5-themelib_sap_bluecrystal": "openui5/packaged-themelib_sap_bluecrystal#~1.28.10"
}
}
For more information on how to install and use Bower, see the Bower home page at http://bower.io.