Introduction
Tango is a low-code designer framework for quickly building low-code platforms. With Tango, you only need a few lines of code to build a basic low-code platform frontend system. The Tango low-code designer directly reads the source code of the frontend project, executes and renders the frontend view based on the source code, and provides users with low-code visual building capabilities. User building operations will be converted into modifications to the code. With Tango, source code goes in, source code comes out.
Architecture
The Tango low-code engine has been layered and decoupled in implementation, allowing the upper-level low-code platform and the lower-level low-code engine to be developed and maintained independently for rapid integration and deployment. On the other hand, the Tango low-code engine defines an open material ecosystem, allowing developers to freely contribute extension component configuration attribute setters and expand low-code materials to second and third-party business components.

Builder Components
Tango low-code engine designer is used to low-cost initialization of a basic low-code platform. Its front-end mainly includes the following parts:
- Designer main framework: for external framework initialization, state management, drag-and-drop engine binding, and other core logic.
- Sidebar panel: provides expandable sidebar panels, in addition to built-in universal panels, users can also add custom panels.
- Property setting panel: property setter panel that supports user property configuration.
- Runtime sandbox: used for rendering the designer runtime view.
- Web IDE: used for online source code editing.

Source Code based Low-Code Kernel
The Tango low-code engine does not rely on private setup protocols and DSL, but directly uses source code to drive it. The engine internally converts the source code to AST, and all the user's setup operations are converted to traversal and modification of AST, and then the AST is regenerated as code and synchronized to the online sandbox for execution. Compared with traditional schema-based low-code solutions, which are limited by private DSL and protocols, it can perfectly integrate low-code setup with source code development.

Code in, Code out
Due to the engine kernel being completely based on source code-driven implementation, Tango's low-code engine is able to achieve visual building capabilities with source code input and output, without providing any proprietary intermediate products. As a result, the online development capabilities built by Tango can seamlessly connect and integrate with the team's existing development services (code hosting, building, deployment, CDN).
