This project is a full modular web application framework. Useful when we want to put many specific tasks or services in one application with authentication.
The ideea was to avoid long files and dependencies who slow down development, maintaining and reading code. Another ideea was reusability of code for similar situations.
The modularity is based on some go specific characteristics and modules are plugable at compile time.
In fact is a puzzle of modules linked after a rule to give a speed in developing applications. Everything is a module linked with a base.
You can add or remove any module and program will compile and run without any changes in the rest of the application. You can reuse modules. A module can interact with others or not. Modules can also contain ajax code.
The big goal is speed in development. The module have a very simple and fixed form. Just get a template and start coding around.
The target can be applications who work with many forms and reports like financial applications, where each module can resolve a simple task, let say a form or a report or a table.
Can be very colaborative project because many programers can work in the same time at different modules who can interact (for example i make the form, you make the report).
Also, can imagine many scenarious. More details about how it work in README.

Log in or sign up for Devpost to join the conversation.