All Projects → SAP → Generator Easy Ui5

SAP / Generator Easy Ui5

Licence: apache-2.0
Generator for OpenUI5-based web-apps which use the official UI5 tooling and support deployment targets such as the SAP Cloud Platform

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Generator Easy Ui5

Uppy Server
[DEPRECATED] 'Uppy Server' was renamed to 'Companion' and lives inside the Uppy repo no
Stars: ✭ 115 (-3.36%)
Mutual labels:  open-source
Steppy
Lightweight, Python library for fast and reproducible experimentation 🔬
Stars: ✭ 119 (+0%)
Mutual labels:  open-source
Neo430
A very small msp430-compatible customizable soft-core microcontroller-like processor system written in platform-independent VHDL.
Stars: ✭ 120 (+0.84%)
Mutual labels:  open-source
Startbootstrap Resume
Start Bootstrap is an open source library of free Bootstrap themes and templates. All of the free themes and templates on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.
Stars: ✭ 1,642 (+1279.83%)
Mutual labels:  open-source
Powershell ipv4portscanner
Powerful asynchronus IPv4 port scanner for PowerShell
Stars: ✭ 117 (-1.68%)
Mutual labels:  open-source
Movieflex ios
iOS application for Movie / Actor information with clean / intuitive UI and MVVM architecture.
Stars: ✭ 119 (+0%)
Mutual labels:  open-source
Flutter Ecommerce
Ecommerce app built with flutter
Stars: ✭ 112 (-5.88%)
Mutual labels:  open-source
Polypoint
Indoor localization based on the DecaWave DW1000.
Stars: ✭ 119 (+0%)
Mutual labels:  open-source
Config Lint
Command line tool to validate configuration files
Stars: ✭ 118 (-0.84%)
Mutual labels:  open-source
One
OneLang: The One System Programming Language. (release as soon)
Stars: ✭ 120 (+0.84%)
Mutual labels:  open-source
Gong Wpf Dragdrop
The GongSolutions.WPF.DragDrop library is a drag'n'drop framework for WPF
Stars: ✭ 1,669 (+1302.52%)
Mutual labels:  open-source
Startbootstrap Clean Blog
Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.
Stars: ✭ 1,604 (+1247.9%)
Mutual labels:  open-source
Angular Open Source Starter
This is a starter project for creating open-source libraries for Angular. It is a full fledged Angular workspace with demo application and easy library addition. It is designed to be used for open-sourcing libraries on Github and has everything you'd need ready for CI, code coverage, SSR testing, StackBlitz demo deployment and more.
Stars: ✭ 120 (+0.84%)
Mutual labels:  open-source
Sakuli
Sakuli is an end-2-end testing and monitoring tool for web sites and common UIs with multiple monitoring integrations
Stars: ✭ 115 (-3.36%)
Mutual labels:  open-source
Ipv6tools
IPv6Tools is a robust modular framework that enables the ability to visually audit an IPv6 enabled network.
Stars: ✭ 120 (+0.84%)
Mutual labels:  open-source
Awesome Jamstack
📔 Curated list of resources: books, videos, articles, speaker decks, tools about using the JAMstack (A modern web development architecture for creating fast, secure and dynamic websites)
Stars: ✭ 115 (-3.36%)
Mutual labels:  open-source
Betterspades
BetterSpades, an Ace of Spades client targeted at low end systems (GL/ES 1.1). Runs on your grandmother's rig!
Stars: ✭ 112 (-5.88%)
Mutual labels:  open-source
Asus Fan Control
🌀 Fan control for ASUS devices running Linux.
Stars: ✭ 120 (+0.84%)
Mutual labels:  open-source
Janitor
The fastest development system in the world.
Stars: ✭ 120 (+0.84%)
Mutual labels:  open-source
Oscp Complete Guide
How to prepare for OSCP complete guide
Stars: ✭ 120 (+0.84%)
Mutual labels:  open-source

Easy UI5 Generator

NPM version Build Status Dependency Status License Status REUSE status

Description

Easy-ui5 is a Yeoman generator which enables you to create simple OpenUI5-based web-apps within seconds.

This generator has been created to simplify the creation of your OpenUI5 prototypes. Now you can scaffold simple UI5 projects from the shell/terminal of your choice. The current best practices (such as async) are already baked into our templates so you don't have to worry about the definition of the metadata files.

The purpose of this generator is to guide you on your first steps with SAPUI5 and SAP BTP deployments. Once you are familiar with those technologies, you might want to tweak the projects to adapt them for productive use-cases (such as continuous deployment pipelines and full i18n).

Target platforms

During the prompting phase, the generator will ask on which target platform your app should run. Currently, the following options are available:

Static webserver

This is the most basic option. Choose this option if you want to deploy the web app in your custom environment or host it on an arbitrary server.

Application Router @ Cloud Foundry

This is the most basic way to deploy the web app in Cloud Foundry-based environments. Besides the basic UI5 project, the generator will add an Approuter node.js-module that serves the web app.

Application Router @ SAP HANA XS Advanced

This is the standard way to deploy the web app in SAP HANA XSA-based environments. Besides the basic UI5 project, the generator will add an Approuter node.js-module that serves the web app.

SAP HTML5 Application Repository service for SAP BTP

This option is a more sophisticate way to serve the web app from Cloud Foundry-based environments. The generator will include all modules that are included in the Application Router @ Cloud Foundry and, additionally, install a module to upload the web app to the HTML5 application repository during deploy-time. You can watch this presentation to learn more about the benefits of using the HTML5 application repository.

SAP Launchpad service

Use this option if you would like to develop a Fiori Launchpad application that should run on Cloud Foundry. The generator will include all modules that are included in the SAP HTML5 Application Repository service for SAP BTP and, additionally, install a module that adds Fiori Launchpad resources to the HTML5 application repository.

SAP NetWeaver

Use this option if you want to deploy your application(s) to the SAP NetWeaver ABAP Repository.

Installation

  1. Get Node.js (version 8.5 or higher)
  2. Install the generator
    npm install -g yo generator-easy-ui5
    
  3. Verify your installation to see if Yeoman has been installed correctly
    yo
    

Make sure you see the easy-ui5 generator listed.

Bootstrapping a new UI5 project

Create your first OpenUI5 App within a few seconds!

  1. Scaffold your OpenUI5 project
    yo easy-ui5
    
  2. Answer the prompts to create your OpenUI5 project
  3. Run it locally
    cd <your project name>
    npm start
    

Sub-generators to avoid recurring tasks

Add a new view

This sub-generator will create a new view (of the same type you specified during the creating of your project) and a new controller and route. If you have OPA5 tests, you can add a corresponding page object now or later with another sub-generator.

yo easy-ui5:newview

Create a custom control

Run the following command from your project's root to scaffold a custom control.

yo easy-ui5:newcontrol

Add a new model

This sub-generator will create a new model in your manifest. Currently, JSON and OData v2 models are supported with various configuration options.

yo easy-ui5:newmodel

Add a new component usage

This sub-generator will add a new component usage for component reuse to your manifest.

yo easy-ui5:newcomponentusage

UIVeri5 tests

This sub-generator will add a basic UIVeri5 test. It will ask you for test configuration and names of the suite and spec. You can add page objects now or later with another sub-generator.

yo easy-ui5:uiveri5

This sub-generator will create a UIVeri5 page object and a new test that shows how to use the page object:

yo easy-ui5:newuiveri5po

This sub-generator will create a UIVeri5 spec file:

yo easy-ui5:newuiveri5spec

OPA5 tests

This sub-generator will add a basic OPA5 test setup. You can add page objects now or later with another sub-generator.

yo easy-ui5:opa5

This sub-generator will create an OPA5 page object and add it to your journeys:

yo easy-ui5:newopa5po

This sub-generator will create an OPA5 journey and add it to your test page:

yo easy-ui5:newopa5journey

wdi5 test framework

There's a sub-generator available to add

  • wdi5 as the test framework
  • a basic wdi5 config and
  • a sample test file

to the UI5 application by easy-ui5.

$> cd yourEasyUI5-project
$> yo easy-ui5:wdi5

Deployment

Depending on your target platform you'll need to install additional tools:

Cloud Foundry

Required tools

  1. Create a free account on SAP BTP Trial
  2. Install the Cloud Foundry Command Line Interface
    cf login
    
  3. Install the MultiApps CF CLI Plugin

Deploy

Call this command from the root directory to deploy the application to Cloud Foundry

npm run deploy

Optional: When using the HTML5 Applications Repository

Install the HTML5 Applications Repository CF CLI Plugin:

cf install-plugin -r CF-Community "html5-plugin"

With this tool you can update your web app without the need to deploy a new cloud application:

cf html5-push -n html5_repo_host .

SAP HANA XSA

Required tools

  1. SAP HANA or create a free SAP HANA Express system
  2. Install the XS CLI Client
    xs login
    

Deploy

Call this command from the root directory to deploy the application to HANA XSA

npm run deploy

SAP NetWeaver

Deploy

Update the ui5.yaml file with your system settings (user, password & server) and ABAP repository settings (package, BSP Container & Transport). Run following command to deploy the application to SAP NetWeaver

npm run deploy

Embedded Technologies

This project leverages (among others) the following Open Source projects:

Support

Please use the GitHub bug tracking system to post questions, bug reports or to create pull requests.

Contributing

We welcome any type of contribution (code contributions, pull requests, issues) to this easy-ui5 generator equally.

Please follow our instructions if you would like to contribute.

To-Do

The following aspects/features are not yet implemented:

  • Decouple the sub-generators from the main flow. E.g. so that app router modules can be added after the generation of the UI5 web app.

Contributions are very much appreciated.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].