pgtype VS logo

Compare pgtype vs logo and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
pgtype logo
2 24
295 5
- -
6.2 0.0
about 1 month ago almost 3 years ago
Go
MIT License Creative Commons Attribution 4.0
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.

pgtype

Posts with mentions or reviews of pgtype. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-21.

logo

Posts with mentions or reviews of logo. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-22.
  • Ask HN: Good examples of Go back ends?
    2 projects | news.ycombinator.com | 22 Jan 2024
    Most golang backends I've seen meanwhile use or switched to using the "gin" framework to build their APIs.

    A lot of them also have conventions for the frontend, where the assets usually are stored in /public, so they can be go:embed later as an embed.FS instance into the binary.

    Having said that, there's plenty of examples on github. I'd recommend to take a look at bigger projects or templates and understand how they structured their packages and abstraction levels. E.g. go-admin comes to mind [1]

    [1] https://github.com/GoAdminGroup/go-admin

    [2] https://github.com/gin-gonic/gin

  • From Laravel to Sponge: How to Easily Develop Web Services with Golang
    2 projects | dev.to | 7 Jan 2024
    Excellent Performance: Sponge is built on the gin framework, providing outstanding performance for web service development.
  • 6 🔥 Awesome Golang packages (web devs)
    6 projects | dev.to | 4 Dec 2023
  • Generate project code for a general web service(gin) to increase your development efficiency by 10 times
    1 project | dev.to | 27 Apr 2023
    The web framework uses gin. It also includes swagger documents, common service governance function codes, and build and deployment scripts. You can choose which database to use.
  • Gin - HTTP web framework written in GO.
    3 projects | /r/engineering_stuff | 22 Apr 2023
    GIN
  • How to run background functions in go
    2 projects | /r/golang | 20 Apr 2023
  • Fundamentals to Learn
    3 projects | /r/golang | 16 Apr 2023
    When it comes to Web Development I would recommend taking a closer look at some standard library packages like net and encoding. Looking at some Web Development open-source frameworks / libraries might be helpful as well. Gin is one of them.
  • 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
  • Looking to build a small team for a start-up idea
    1 project | /r/webdevelopment | 15 Mar 2023
    The back-end is going to be written in Golang, using a Gin, Gorm, and a Postgres DB, so bonus points if you are familiar with Go!
  • Can an API be merely a server that has post requests sent to it, rather than something that is installed?
    3 projects | /r/learnprogramming | 5 Mar 2023
    Here's Express for Node.js, Flask for Python, Alfred for Dart, and Gin for Go; that's four different software packages for four completely different programming languages that all do very similar things. Take a look and see which one feels best, and start from there!

What are some alternatives?

When comparing pgtype and logo you can also consider the following projects:

golang-cheat-sheet - An overview of Go syntax and features.

recipe-gin-postgres-api - Example of a go HTTP api using gin in zerops.io

viper - Go configuration with fangs

todo-api-microservice-example - Go microservice tutorial project using Domain Driven Design and Onion Architecture!

yaml - YAML support for the Go language.

Express - Fast, unopinionated, minimalist web framework for node.

Squirrel - Fluent SQL generation for golang

zerolog - Zero Allocation JSON Logger

sqlx - general purpose extensions to golang's database/sql

GJSON - Get JSON values quickly - JSON parser for Go

fasthttp - Fast HTTP package for Go. Tuned for high performance. Zero memory allocations in hot paths. Up to 10x faster than net/http

pgx - PostgreSQL driver and toolkit for Go