You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is a framework for building applications based on components. These components can be used in multiple applications and are interchangeable.
This framework is used solely to initialize the application and does NOT affect the main loop of your application.
You can still use your favorite frameworks and libraries. We allow you to wrap them in components.
Components may depend on other components. They can be expanded or reduced based on your requirements.
Components are not microservices; they are folders that contain different functionalities.
The framework has very low coupling within its code. All entities are optional.
We provide the ability to use dependency injection, configuration, and error handling.
However, one of the framework's main features is that you can modify entities without changing the application code.
This allows you to create mocks for any part of your application without changing the code.
If your application is divided into components (modules), it further separates your code into different services and allows you to reuse it in other applications.
Of course, you don’t need to make components too small.