提交 510be4a1 编写于 作者: 彭世瑜's avatar 彭世瑜

fix

上级 040adad3
# Go语言
Go 语言: [官网​](https://go.dev/​) | [github​](https://github.com/golang/go​)
## 学习笔记
[笔记: Golang 核心编程](/blog/golang/index.md)
[笔记: Golang 核心编程](/blog/golang/index.md)
## 学习资料
......@@ -14,6 +17,8 @@
- Go 语言教程 | 菜鸟教程 [https://www.runoob.com/go/go-tutorial.html](https://www.runoob.com/go/go-tutorial.html)
- TIOBE [https://www.tiobe.com/tiobe-index/](https://www.tiobe.com/tiobe-index/)
- Go网址导航 [https://hao.studygolang.com/](https://hao.studygolang.com/)
- Go语言中文文档 [https://www.topgoer.com/](https://www.topgoer.com/)
## 开源图书
......@@ -25,4 +30,52 @@
- [Go by Example 中文](https://books.studygolang.com/gobyexample/)
- [Go 语言原本](https://golang.design/under-the-hood/)
- [Go 语言高性能编程](https://geektutu.com/post/high-performance-go.html)
- [LeetCode Cookbook (Go)](https://books.halfrost.com/leetcode/)
- [LeetCode Cookbook (Go)](https://books.halfrost.com/leetcode/) | [github](​https://github.com/halfrost/LeetCode-Go​)
awesome-go: [官网​](https://awesome-go.com) | [github](https://github.com/avelino/awesome-go)
[TheAlgorithms/Go​](​https://the-algorithms.com/) | [github](​https://github.com/TheAlgorithms/Go​)
Data Science Masters [官网](​http://datasciencemasters.org/​​) | [github](​https://github.com/datasciencemasters/go​) 开源项目带你学习数据科学的开源课程
## 开源库
gin: [官网](https://gin-gonic.com/zh-cn/)​​ | [github](https://github.com/gin-gonic/gin) ![](https://img.shields.io/github/stars/gin-gonic/gin.svg?style=social) Go语言最快的全功能Web框架。晶莹剔透
Fiber: [官网](​https://gofiber.io/​​) | [github](​https://github.com/gofiber/fiber​) 一个简单快速的 Go Web 框架。它的灵感来自流行的 Express JS 框架。
Go Zero [官网](​https://go-zero.dev/​​) | [github](​https://github.com/zeromicro/go-zero​) 一款云原生微服务 RPC 框架
Iris [官网](​https://www.iris-go.com/​​) | [github](​https://github.com/kataras/iris​) 是最快的 HTTP/2 Go Web 框架
Echo [官网](​https://echo.labstack.com/​​) | [github](​https://github.com/labstack/echo) Go Web 框架的一个
GORM [官网](​https://gorm.io/​​) | [github](​https://github.com/go-gorm/gorm​) 一款 Go 语言的 ORM 库
Project Layout [github](​https://github.com/golang-standards/project-layout) 提供给 Go 开发者一个良好的应用程序项目的基本布局
Traefik [官网](https://traefik.io/​​) | [github](​https://github.com/traefik/traefik​​) 一款开源的反向代理与负载均衡工具
V2ray Core [官网](​https://www.v2fly.org/​​) | [github](​https://github.com/v2fly/v2ray-core​)
Rclone [官网](​https://rclone.org/​​) | [github](​https://github.com/rclone/rclone​​) 一个集成了各大云平台供应商云存储的接口的命令行程序
Gitea [官网](​https://gitea.io/zh-cn/​​) | [github](https://github.com/go-gitea/gitea​​) 一个开源社区驱动的轻量级代码托管解决方案
GitHub CLI [官网](https://cli.github.com/​​) | [github](https://github.com/cli/cli​​) Github 官方用于构建命令行程序的库
Clash [github](https://github.com/Dreamacro/clash​​) 基于规则的跨平台代理软件核心程序
Cobra [官网](​https://cobra.dev/​​) | [github](​https://github.com/spf13/cobra​​) 一个优异的 CLI 框架
golang-jwt/jwt [pkg](https://pkg.go.dev/github.com/golang-jwt/jwt/v4) | [github](https://github.com/golang-jwt/jwt) ![](https://img.shields.io/github/stars/golang-jwt/jwt.svg?style=social) 一个Go的 JSON Web Tokens实现
robfig/cron [pkg](https://pkg.go.dev/github.com/robfig/cron/v3) | [github](https://github.com/robfig/cron) ![](https://img.shields.io/github/stars/robfig/cron.svg?style=social) 执行定时任务
flosch/pongo2 [pkg](https://pkg.go.dev/github.com/flosch/pongo2/v6) | [github](https://github.com/flosch/pongo2) ![](https://img.shields.io/github/stars/flosch/pongo2.svg?style=social) 一种类似于Django语法的模板语言
\ No newline at end of file
......@@ -13,7 +13,12 @@
​探秘 Web 水印技术
- https://mp.weixin.qq.com/s/FNuVlGLt3Zi8COVAdGBKRw
- https://mp.weixin.qq.com/s/bXpDxN2tTS9FvVQMqLGB2w
你知道前端水印功能是怎么实现的吗?
- https://mp.weixin.qq.com/s/ckvwOTOxrhUKMd8lIyYt5A
- https://juejin.cn/post/7132620574198595597
给我实现一个前端的 Excel 导入和导出功能
......@@ -27,6 +32,11 @@
盘点12个yyds的微信小程序开源项目
- https://mp.weixin.qq.com/s/jrPAVeTEFoe_rJvjDGL0Wg
用JS完成一个LRU缓存,原来LRU 算法这么简单!
- https://mp.weixin.qq.com/s/jbXnVRpL3YI3jyoMr3cY9A
- https://juejin.cn/post/7105654083347808263
## 后端
SpringBoot 接口数据加解密技巧,so easy!
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册