go-sdk VS zerolog

Compare go-sdk vs zerolog and see what are their differences.

go-sdk

A composable toolbox of libraries to build everything from CLIs to enterprise applications. (by blend)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
go-sdk zerolog
1 39
157 9,726
0.0% -
4.8 7.9
4 months ago 8 days ago
Go Go
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

go-sdk

Posts with mentions or reviews of go-sdk. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-08-15.
  • What are your favorite packages to use?
    55 projects | /r/golang | 15 Aug 2021
    This is probably not popular approach on here, but we maintain a public version of our internal go monorepo sdk package as an open source repo on github: https://github.com/blend/go-sdk, and I'll use this for personal stuff as well.

zerolog

Posts with mentions or reviews of zerolog. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-08.
  • Go 1.21 Released
    7 projects | news.ycombinator.com | 8 Aug 2023
    Be aware that there is a performance impact compared to using zerolog directly [0] (my uneducated guess is it is likely due to pointer indirection).

    [0]: https://github.com/rs/zerolog/issues/571#issuecomment-166202...

  • How to start a Go project in 2023
    21 projects | news.ycombinator.com | 23 May 2023
    Things I can't live without in a new Go project in no particular order:

    - https://github.com/golangci/golangci-lint - meta-linter

    - https://goreleaser.com - automate release workflows

    - https://magefile.org - build tool that can version your tools

    - https://github.com/ory/dockertest/v3 - run containers for e2e testing

    - https://github.com/ecordell/optgen - generate functional options

    - https://golang.org/x/tools/cmd/stringer - generate String()

    - https://mvdan.cc/gofumpt - stricter gofmt

    - https://github.com/stretchr/testify - test assertion library

    - https://github.com/rs/zerolog - logging

    - https://github.com/spf13/cobra - CLI framework

    FWIW, I just lifted all the tools we use for https://github.com/authzed/spicedb

    We've also written some custom linters that might be useful for other folks: https://github.com/authzed/spicedb/tree/main/tools/analyzers

  • claim: qlog is faster, simpler and more efficient that slog; and does more practically useful stuff too
    4 projects | /r/golang | 14 May 2023
    Can you compare it against zerolog?
  • Zerolog printing logs multiple times
    2 projects | /r/golang | 19 Apr 2023
    Hello gophers, I am using https://github.com/uber-go/fx and https://github.com/rs/zerolog for logging.
  • Doubt around "Test only public functions" concept
    2 projects | /r/golang | 5 Apr 2023
    Hovewer it is not bad to export such a function, if it is done purely for convenience. For example github.com/rs/zerolog works on a logger instances, which can be created manually, but they also provide a github.com/rs/zerolog/blob//log package, which provide you access to the global logger which is more convenient in most cases
  • Tools besides Go for a newbie
    36 projects | /r/golang | 26 Mar 2023
    IDE: use whatever make you productive. I personally use vscode. VCS: git, as golang communities use github heavily as base for many libraries. AFAIK Linter: use staticcheck for linting as it looks like mostly used linting tool in go, supported by many also. In Vscode it will be recommended once you install go plugin. Libraries/Framework: actually the standard libraries already included many things you need, decent enough for your day-to-day development cycles(e.g. `net/http`). But here are things for extra: - Struct fields validator: validator - Http server lib: chi router , httprouter , fasthttp (for non standard http implementations, but fast) - Web Framework: echo , gin , fiber , beego , etc - Http client lib: most already covered by stdlib(net/http), so you rarely need extra lib for this, but if you really need some are: resty - CLI: cobra - Config: godotenv , viper - DB Drivers: sqlx , postgre , sqlite , mysql - nosql: redis , mongodb , elasticsearch - ORM: gorm , entgo , sqlc(codegen) - JS Transpiler: gopherjs - GUI: fyne - grpc: grpc - logging: zerolog - test: testify , gomock , dockertest - and many others you can find here
  • What is the common log library which is industry standard that is used in server applications?
    5 projects | /r/golang | 21 Mar 2023
    I use zerolog myself and have seen it being used in production several times. Also they have a list of who uses zerolog
  • Log: A minimal, colorful Go logging library 🪵
    2 projects | /r/commandline | 21 Feb 2023
    This would be so awesome if it was extending an awesome logger like https://github.com/rs/zerolog. Personally I love zerolog because of how it handles different data types including structs!
  • Best Logging Library for Golang
    6 projects | dev.to | 12 Feb 2023
    logrus README recommended using other libraries such as Zerolog, Zap, and Apex.
  • If you had to choose a logging framework, which one would you use?
    2 projects | /r/golang | 19 Oct 2022

What are some alternatives?

When comparing go-sdk and zerolog you can also consider the following projects:

goby - Goby - Yet another programming language written in Go

zap - Blazing fast, structured, leveled logging in Go.

logrus - Structured, pluggable logging for Go.

decimal - Arbitrary-precision fixed-point decimal numbers in Go

lumberjack - lumberjack is a log rolling package for Go

ginkgo - A Modern Testing Framework for Go

glog - Leveled execution logs for Go

sd-webui-go - This is a Go language version of the SDK based on stable-diffusion-webui. In your code, you can directly use the API interfaces of stable-diffusion-webui through object-oriented operations, instead of dealing with cumbersome JSON. Support extensions API !

Gin - Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.

cobra - A Commander for modern Go CLI interactions

log - Structured logging package for Go.