generator-sap-ui5-app

A UI5 app generator for component based applications

Usage no npm install needed!

<script type="module">
  import generatorSapUi5App from 'https://cdn.skypack.dev/generator-sap-ui5-app';
</script>

README

generator-sap-ui5-app

Generate SAP UI5 projects

Step by step of creating a new project with the generator.

  • Install Yeoman globally

    npm install -g yo
    
  • Install sap-ui5-app generator globally

     npm i -g generator-sap-ui5-app
    
  • Create your project using yo sap-ui5-app and answer the questions in your terminal:

    • Insert the project name;
    • Insert the project namespace;
    • Insert the destination path;
    • Choose to use docker or not;

    In the destination path, if you do not put anything, a folder with the same name as your project will be created. Also, you can navigate to the target parent's folder and insert a ./ to create the project in current folder.

  • Navigate to the created folder and run the project:

    • If your choice was docker, then run: docker-compose up --build
    • Otherwise run: npm run dev