Get Started
Componego Framework seamlessly integrates components, dependency injection, configuration, and error handling, providing a robust foundation for building modular, scalable, and maintainable software systems.
The framework embraces a component-based architecture. These components encapsulate specific functionalities and seamlessly integrate to construct more complex applications. By promoting code reusability and maintainability, the framework allows developers to work on independent units.
Main features of the framework:
- A well-organized application initialization process with a minimal main function.
- Simple and powerful components.
- Flexible dependency injection that doesn't require code generation.
- The core of the framework does not depend on third-party packages.
- Easily integrates with existing code and third-party packages.
- No impact on the business logic of your application. You can write and organize it just as you did before.
- Any entity of the framework can be replaced without changing previously written code.
- Comprehensive and clear documentation for developers.
The framework does not provide a database connection, web server, queue, and other features. Instead, we offer the ability to conveniently integrate these components for later reuse in your projects. You can use any packages you prefer; there are no limits. Any existing Golang package can be easily wrapped in the framework's components.
Note
The documentation provides a brief description of the main functions of the framework. You may find some aspects complicated, but we include links for each part described in another section.
You need to create an application or component using this framework to fully understand it. Don't hesitate to open the source code. There, you will find many interesting functions that are not described in the documentation.