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
MixGo is a Go rapid development standard toolkit; the internal modules are highly decoupled, and the overall code is built on multiple independent modules. Even if users do not use our mixcli scaffolding to quickly generate code, they can also use these independent modules. For example: you can use xcli alone to build your command-line interaction; use xsql to call the database; use xwp to handle MQ queue consumption; you can freely combine all modules like building blocks.
Independent Modules
All core modules can be used independently.
mix-go/mixcli Scaffold to quickly create Go projects, similar to Vue CLI in the frontend field.
mix-go/xcli Command-line interaction and command management tool, also includes command-line parameter acquisition, middleware, program daemon, etc.
mix-go/xsql Lightweight database based on database/sql, fully functional and supports any database driver.
mix-go/xdi IoC, DI library for handling object dependencies, can implement unified dependency management, global object management, dynamic configuration refresh, etc.
mix-go/xwp A universal work pool, coroutine pool, can dynamically expand and shrink.