Luigi

The Enterprise-Ready Micro Frontend Framework

README

Build Status REUSE status

Luigi


Description


Luigi is a micro frontend JavaScript framework that enables you to create an administrative user interface driven by local and distributed views. Luigi allows a web application to communicate with the micro frontends which the application contains. To make sure the communication runs smoothly, you can easily configure the settings such as routing, navigation, authorization, and user experience elements.

Luigi consists of Luigi Core application and Luigi Client libraries. They establish secure communication between the core application and the micro frontend using postMessage API.

Read the Getting started guide to learn more about micro frontends and the structure of Luigi.

Requirements


Luigi can run on any operating system and there are no specific requirements for installing it.

Download and installation


Follow the instructions in this document to install Luigi Core. Read this document to install the Luigi Client.


Usage


Examples


View the application examples to explore Luigi's features.

Go to the Luigi Fiddle site to see Luigi in action and configure a sample application.

Documentation


For details, see Luigi documentation.

Browser support


If you want to support Internet Explorer 11 in your application, install the @luigi-project/core-ie11 package and update your Luigi imports as follows:

Luigi Core

  1. ``` html
  2. <!DOCTYPE html>
  3. <html lang="en">
  4.   <head>
  5.     <link rel='stylesheet' href='/luigi-core/luigi-ie11.css'>
  6.     
  7.   </head>
  8.   <body>
  9.     <script type="module" src="/luigi-core/luigi.js"></script>
  10.     <script nomodule src="/luigi-core/luigi-ie11.js"></script>
  11.     
  12.   </body>
  13. </html>
  14. ```

Luigi Client

Install the @luigi-project/client-ie11 package and update your Luigi imports as follows:
  1. ``` js
  2. import {
  3.   linkManager,
  4.   uxManager
  5. } from '@luigi-project/client-ie11';
  6. ```

NOTE: The example applications are not fully compatible with IE11.


Development


Development guidelines for micro frontend developers


For security reasons, follow these guidelines when developing a micro frontend:

- Make the micro frontend accessible only through HTTPS.
- Add Content Security Policies (CSPs).
- Make the Access-Control-Allow-Origin HTTP header as restrictive as possible.
- Maintain an allowlist with trusted domains and compare it with the origin of the Luigi Core application. The origin will be passed when you call the init listener in your micro frontend. Stop further processing if the origin does not match.


NOTE: Luigi follows these sandbox rules for iframes.



Code formatting for contributors


All projects in the repository use Prettier to format source code. Run thenpm install command in the root folder to install it along with husky, the Git hooks manager. Both tools ensure proper codebase formatting before committing it.

Unit tests


To ensure that existing features still work as expected after your changes, run unit tests using the npm run test command in the core folder.

E2E tests


To ensure that existing features still work as expected after your changes, run UI tests from the Angular example application. Before running the tests, start the sample application by using thenpm start command in the application folder.

When the application is ready:

- Run npm run e2e:open in the test/e2e-test-application folder to start tests in the interactive mode.
- Run npm run e2e:run in the test/e2e-test-application folder to start tests in the headless browser.

Backward compatibility tests


Use these tests to ensure that applications written for previous versions of Luigi still work after Luigi gets updated with npm. Before running the tests, bundle Luigi by running lerna run bundle in the main repository folder.

Install jq using thebrew install jq command. It is required for the script to work, however, you can omit it if the command you are using to run your tests is tagged latest.

- Run npm run test:compatibility in the main repository folder to start regression testing. The system will prompt you to select the previous version.
- Run npm run test:compatibility -- --tag latest in the main repository folder to start regression testing with the last version preselected.
- On the CI, run npm run test:compatibility -- --install --tag latest in the main repository folder to install dependencies, bundle Luigi and run the tests with the last version preselected.

How to obtain support


If you have further questions about Luigi, you can check the GitHub Discussions page or contact us on our Slack channel. If you find a specific problem or bug, you can also open a GitHub issue on our repository. Please describe the problem and the steps to reproduce it in your issue.

Contributing


Please refer to the CONTRIBUTING.md file in this repository for instructions on how to contribute to Luigi.

Licensing


Please see our LICENSE for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available via the REUSE tool.