xChar
·5 months ago

1️⃣ CLI / 命令行工具

github.com/urfave/cli/v3 → 提供 Gitea 命令行接口,例如 gitea web, gitea doctor 等

github.com/urfave/cli-docs/v3 → 用于生成 CLI 文档

2️⃣ Git 操作相关

github.com/go-git/go-git/v5 → Go 实现的 Git 库,管理仓库、提交、分支等

github.com/go-git/go-billy/v5 → 抽象文件系统接口,配合 go-git 使用

gitea.com/gitea/git-lfs-transfer → 支持 Git LFS 文件传输

3️⃣ Web 框架 / HTTP

github.com/go-chi/chi/v5 → Go 的轻量级 HTTP 路由

github.com/go-chi/cors → 处理跨域请求

gitea.com/go-chi/session → Web session 管理

gitea.com/go-chi/binding → 请求数据绑定和验证

github.com/chi-middleware/proxy → HTTP 代理中间件

4️⃣ 数据库 / ORM

xorm.io/xorm → ORM 框架,用于操作数据库(PostgreSQL、MySQL、SQLite、MSSQL)

xorm.io/builder → SQL 构建辅助工具

github.com/go-sql-driver/mysql → MySQL 驱动

github.com/lib/pq → PostgreSQL 驱动

github.com/microsoft/go-mssqldb → SQL Server 驱动

5️⃣ 安全 / 加密 / 验证

github.com/golang-jwt/jwt/v5 → JWT 认证

github.com/ProtonMail/go-crypto → 邮件加密、PGP

github.com/42wim/httpsig → HTTP 签名验证

github.com/go-webauthn/webauthn → WebAuthn / FIDO2

github.com/pquerna/otp → TOTP / 二步验证

github.com/42wim/sshsig → SSH 签名验证

6️⃣ 模板 / Markdown / 文本渲染

github.com/yuin/goldmark → Markdown 解析

github.com/yuin/goldmark-highlighting/v2 → Markdown 代码高亮

github.com/yuin/goldmark-meta → Markdown 元数据解析

github.com/alecthomas/chroma/v2 → 语法高亮

github.com/mattn/go-runewidth → 字符宽度处理(终端显示对齐)

github.com/dustin/go-humanize → 人类可读的大小 / 时间格式

7️⃣ 前端 / 静态资源打包

github.com/mitchellh/mapstructure → 用于解析 JSON/YAML 配置

github.com/gobwas/glob → 通配符匹配文件路径

github.com/mattn/go-isatty → 判断终端是否支持 ANSI 颜色

github.com/microcosm-cc/bluemonday → HTML 安全过滤

8️⃣ 邮件 / IMAP

github.com/emersion/go-imap → IMAP 协议客户端

github.com/emersion/go-sasl → SASL 验证

github.com/wneessen/go-mail → 邮件发送库

github.com/gorilla/feeds → RSS / Atom 订阅生成

9️⃣ 存储 / 文件 / 压缩

github.com/minio/minio-go/v7 → 对象存储 S3 API

github.com/djherbis/nio/v3 → 内存映射文件处理

github.com/djherbis/buffer → 内存缓冲处理

github.com/ProtonMail/go-crypto → 文件加密/PGP

github.com/blevesearch/bleve → 搜索索引

github.com/blevesearch/segment → 索引分词

github.com/blevesearch/go-porterstemmer → 词干算法

10️⃣ 云 / API / SDK

github.com/Azure/azure-sdk-for-go → Azure 对象存储

github.com/aws/aws-sdk-go-v2 → AWS 服务 SDK

cloud.google.com/go/compute/metadata → GCP 元数据

11️⃣ 其他工具库

github.com/mitchellh/mapstructure → 将 map 转结构体

github.com/pkg/errors → 错误包装

github.com/robfig/cron/v3 → 定时任务

github.com/sergi/go-diff → 文本差异计算

Loading comments...