This extension is a minimalist sample of a front-end extension, which runs inside Shell as a full custom app without making use of the Shell side navigation. While running inside Shell, the extension hides its top bar and shows its side navigation meanwhile running standalone, the extension shows its top bar and its side navigation. The extension should be assigned to the Shell Home Screen and should not be assigned to an outlet.
Front-end extension only requires a static storage with a web server to be running.
You can run a local web server using the http-server node package
npm install --global http-server
http-server [path] [options]
An alternative solution might already be available on your machine using python3
python3 -m http.server 8080
For testing purpose, an external solution like ngrok or localtunnel can provide a publicly accessible URL that will proxy all requests to your locally running webserver.
GitHub offers static hosting as part of the GitHub pages functionality. Each GitHub repository can host static files and then be used with some limits to host your front-end application.
In case you find a bug or need support, please open an issue here.
Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved. This project is licensed under the Apache Software License, version 2.0 except as noted otherwise in the LICENSE file.