search
HomeDevelopment ToolsgitGitHub project sharing: 6 very valuable visual construction open source projects

GitHub project sharing: 6 very valuable visual construction open source projects

I have been researching technologies and products related to low-code visualization before, and have also led many visualization construction projects. The main purpose is toreduce enterprise R&D costsand shorten product delivery cycle, with the development of Internet technology, many excellent technical products have come out one after another. Next, I will share with you several very valuable visual construction projects, Help enterprises digital transformation.

1. Formily - Alibaba unified front-end form solution

What we see above is Screenshot of the Formily editor. It is developed by the Alibaba technical team and is completely open source. We can use it to create Natural flow layout form building applications. If you are a technical person, you can also You can customize the components you want. Currently, Formily already supports multiple component libraries and frameworks, as follows:

  • antd
  • element
  • vant
  • next
  • semi

So whether you are a react framework developer or a vue framework developer, You can use it to build your own form production platform.

#But the only disadvantage is that it is not friendly enough to non-technical people. For example, its drag and drop is a natural flow layout, and the elements The position cannot be completely moved freely, so it is not suitable for some customized or high-freedom scenes. The following is its architecture diagram:

project Link: github.com/alibaba/des…

If you are interested, you can learn and refer to it.

2. Amis - Baidu front-end low-code framework

amis is a low-code front-end framework that uses JSON configuration to generate pages, which can reduce page development workload, greatly improving efficiency.

Front-end development is becoming more and more complex, and the learning threshold is getting higher and higher. To use the popular UI component library, we must understand npm, yarn, webpack, react/vue, etc., you must be familiar with ES6 syntax, and preferably also understand state management, such as Redux, if you have never been exposed to functional programming, it is very difficult to get started, but after getting started, you will find that it has a huge ecology, there are 2347 related libraries, many of them have similar functions, and the selection cost high.

In order to generate most pages in the simplest way, amis’s solution is configured based on JSON. Its unique benefits are:

  • No need to know front-end: Within Baidu, most amis users have never written front-end pages before and do not know JavaScript, but they can make professional and complex The backend interface is something that all other front-end UI libraries cannot do;
  • is not affected by front-end technology updates: the oldest within Baidu## The #amis page was created more than 6 years ago and is still in use today. The Angular/Vue/React version from that year is now abandoned, and the popular Gulp is also Replaced by Webpack. If these pages are not using amis, the current maintenance cost will be very high;
  • can be completely produced using the visual page editor Page : Generally, front-end visual editors can only be used to make static prototypes, while the pages created by the amis visual editor can be directly online
Project link:

github.com/baidu/amis

If you are interested, you can also learn and refer to it.

3. H5-Dooring——H5 page building artifact ( Everyone can create a page in a fool-proof way)

##H5-Dooring

is a professional-level visual low-end system developed by domestic technology giants. Code project, making H5 pages can be as simple as building blocks. Easily build H5 pages, H5 websites, PC websites, LowCode platforms.simultaneous editor

supports multiple languages

, and supports a variety of rendering modes, such as smart grid layout and free layout. It is very suitable for non-technical people to use. It takes 10 minutes to build a beautiful page. The technical architecture is as follows:

It is worth noting that the page we built visually on H5-Dooring can be online with one click, and supports downloading the page code , so that people who do not understand technology can easily deploy the page to their own server, which is simply a blessing for non-technical people. The platform is still continuing to iterate to create a better user experience.

Project link : github.com/MrXujiang/h…

4. mometa - a low-code metaprogramming editor for R&D

mometa is not a traditional mainstream low-code platform (such as amis/h5-dooring), mometa is a R&D-oriented, code visual design and editing platform; it is more Like dreamweaver, gui visual editing is to programmers.

The problems it is used to solve include:

  • It does not rely on low-code platforms, and secondary development can seamlessly enter the code development mode
  • Supports all at the same time WYSIWYG visual editing is used to improve efficiency and development experience
  • Provides material ecology, customizable materials, improves material usage experience, and increases reuse rate

mometa The positioning is more based on the local development model of programmers, with the added ability of visual coding (the local code file itself is also modified); It is more like an auxiliary coding tool rather than a No-Code (amis/h5-dooring) platform solution.

Project link: github.com/imcuttle/mo…

More feature introduction:

5. V6.Dooring——Visual large screen production tool

Speaking of data visualization, everyone must have had some contact with it. From a technical perspective, the most intuitive one is the front-end visualization framework, such as:

  • echart
  • antv
  • Chart.js
  • D3.js
  • Vega

These libraries can help us easily create visual charts. V6.Dooring provides a design solution that can integrate different visual charts into a large digital screen by dragging and dropping, which greatly reduces development costs and cycles and accelerates the digital transformation of enterprises. The technical architecture is as follows:

In order to achieve the ease of use of the product, V6.Dooring has designed the following core modules:

  • Drag-and-drop implementation
  • Material center design
  • Dynamic renderer implementation
  • Configuration panel design
  • Control center
  • function Assisted Design

Here is its editor:

It is worth noting that V6.Dooring is also developed byH5-Dooring The author led the research and development, if you are interested, you can study it.

6. form-generator——Based on Element UI form design and code generator

Element UI form design and code generator, which can run the generated code directly on vue based on Element project; you can also export the JSON form and use the supporting parser to parse JSON into a real form.

I think it is somewhat similar to Formily, both are technical side construction projects.

Project link: github.com/JakHuang/fo…

Summary

Okay, that’s it for today’s sharing. I will continue to share high-value usage projects and technical practical sharing in the future. If you have any good suggestions, Feedback is also welcome at any time.

(Learning video sharing: Basic Programming Video)

The above is the detailed content of GitHub project sharing: 6 very valuable visual construction open source projects. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
Git and GitHub: Exploring Their Roles and FunctionsGit and GitHub: Exploring Their Roles and FunctionsMay 09, 2025 am 12:25 AM

The role and function of Git and GitHub in software development is to manage code and collaborative development. Git efficiently manages code versions through commit, branch and merge functions, while GitHub provides code hosting and collaboration tools such as PullRequest and Issues to improve team collaboration efficiency.

GitHub: Discovering, Sharing, and Contributing to CodeGitHub: Discovering, Sharing, and Contributing to CodeMay 08, 2025 am 12:26 AM

GitHub is the preferred platform for developers to discover, share and contribute code. 1) Find specific code bases through search functions, such as Python projects. 2) Create a repository and push code to share with developers around the world. 3) Participate in open source projects and contribute code through Fork and PullRequest.

Using Git with GitHub: A Practical GuideUsing Git with GitHub: A Practical GuideMay 07, 2025 am 12:11 AM

Git is a version control system, and GitHub is an online platform based on Git. The steps to using Git and GitHub for code management and team collaboration include: 1. Initialize the Git repository: gitinit. 2. Add files to the temporary storage area: gitadd. 3. Submit changes: gitcommit-m"Initialcommit". 4. Related to the GitHub repository: gitremoteaddoriginhttps://github.com/username/repository.git. 5. Push code to GitHub: gitpush-uoriginmaste

GitHub's Impact: Software Development and CollaborationGitHub's Impact: Software Development and CollaborationMay 06, 2025 am 12:09 AM

GitHub has a far-reaching impact on software development and collaboration: 1. It is based on Git's distributed version control system, which improves code security and development flexibility; 2. Through functions such as PullRequest, it improves team collaboration efficiency and knowledge sharing; 3. Tools such as GitHubActions help optimize the development process and improve code quality.

Using GitHub: Sharing, Managing, and Contributing to CodeUsing GitHub: Sharing, Managing, and Contributing to CodeMay 05, 2025 am 12:12 AM

The methods of sharing, managing and contributing code on GitHub include: 1. Create a repository and push code, and write README and LICENSE files; 2. Use branches, tags and merge requests to manage code; 3. Fork the repository, modify and submit PullRequest contribution code. Through these steps, developers can effectively use GitHub to improve development efficiency and collaboration capabilities.

Git vs. GitHub: A Comparative AnalysisGit vs. GitHub: A Comparative AnalysisMay 04, 2025 am 12:07 AM

Git is a distributed version control system, and GitHub is a Git-based collaboration platform. Git is used for version control and code management, while GitHub provides additional collaboration features such as code review and project management.

Git vs. GitHub: Understanding the DifferenceGit vs. GitHub: Understanding the DifferenceMay 03, 2025 am 12:08 AM

Git is a distributed version control system, and GitHub is an online platform based on Git. Git is used for version control, branch management and merger, and GitHub provides code hosting, collaboration tools and social networking capabilities.

GitHub: The Frontend, Git: The BackendGitHub: The Frontend, Git: The BackendMay 02, 2025 am 12:16 AM

Git is a back-end version control system, and GitHub is a front-end collaboration platform based on Git. Git manages code version, GitHub provides user interface and collaboration tools, and the two work together to improve development efficiency.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.