您的位置:首页 > 编程语言 > Go语言

Golang 自用第三方库

2021-01-22 22:18 776 查看

Golang Config File lib Golang 配置文件库

go get github.com/spf13/viper
go get github.com/go-ini/ini

web 框架

# Kubernetes 使用的
go get github.com/emicklei/go-restful
go get github.com/gin-gonic/gin
go get github.com/kataras/iris
go get github.com/astaxie/beego

JSON 库

go get github.com/json-iterator/go

邮件库

# https://gopkg.in/gomail.v2
go get gopkg.in/gomail.v2
go get github.com/jordan-wright/email

SDK 系列

# Marathon SDK
go get github.com/gambol99/go-marathon
# F5 SDK
go get github.com/f5devcentral/go-bigip
# Kubernetes SDK
go get github.com/kubernetes/client-go
# Docker SDK
go get github.com/docker/docker/client
# InfluxDB SDK
go get github.com/influxdata/influxdb1-client/v2
# Redis SDK
go get github.com/gomodule/redigo

psutil

go get github.com/shirou/gopsutil

cmd

go get github.com/spf13/cobra
# shell 命令库
go get github.com/natefinch/sh

http 库

go get github.com/kirinlabs/HttpRequest

命令行参数库

go get github.com/spf13/cobra
go get gopkg.in/alecthomas/kingpin.v2

Go 开发通用库

go get github.com/iiinsomnia/yiigo

对比库

go get  github.com/com/google/go-cmp/cmp

日志库

# 不支持日志切割
go get github.com/sirupsen/logrus
# 用这个库辅助 logrus
go get github.com/rifflock/lfshook

用于监控的库(proc)

go get github.com/prometheus/procfs
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: