awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
Back to astaxie/beego

Projects sharing features with Beego

30 open-source projects similar to astaxie/beego, ranked by shared indexed features. Tags may describe platforms or build tools rather than the same primary purpose. Check each project’s use case, license, and deployment requirements before treating it as a replacement.

  • go-pg/pggo-pg avatar

    go-pg/pg

    5,785View on GitHub↗

    pg is a PostgreSQL object-relational mapper (ORM) for Go that maps Go structs to database tables and provides a fluent query builder for constructing SQL statements programmatically. At its core, it automatically generates CREATE TABLE statements from Go struct definitions using struct tags and naming conventions, and builds queries through method chaining with placeholder-based parameter binding to prevent SQL injection. The library distinguishes itself through relation-aware join generation that automatically constructs JOIN clauses for has-one, has-many, many-to-many, and polymorphic assoc

    Go
    View on GitHub↗5,785
  • upper/dbupper avatar

    upper/db

    3,658View on GitHub↗

    Data Access Layer (DAL) for PostgreSQL, CockroachDB, MySQL, SQLite and MongoDB with ORM-like features.

    Gocockroachdbdaldatabase
    View on GitHub↗3,658
  • facebook/entF

    facebook/ent

    0View on GitHub↗
    View on GitHub↗0
  • go-martini/martinigo-martini avatar

    go-martini/martini

    11,603View on GitHub↗

    Martini is a web framework for the Go programming language that provides a toolkit for building web applications. It functions as a routing engine and an HTTP middleware pipeline to map network requests to specific handler functions. The framework is distinguished by its dependency injection system, which automatically resolves and provides requested service types as arguments to handler functions. This allows for the decoupling of business logic from infrastructure by matching requested types against a registry of available services. The project covers a broad range of web capabilities, inc

    Go
    View on GitHub↗11,603

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Find more with AI search
  • schotime/npocoschotime avatar

    schotime/NPoco

    877View on GitHub↗

    Simple microORM that maps the results of a query onto a POCO object. Project based on Schotime's branch of PetaPoco

    C#c-sharpdatabasemicro-orm
    View on GitHub↗877
  • rushteam/gosqlR

    rushteam/gosql

    0View on GitHub↗
    View on GitHub↗0
  • collaboratingplatypus/petapocoCollaboratingPlatypus avatar

    CollaboratingPlatypus/PetaPoco

    2,139View on GitHub↗

    Official PetaPoco, A tiny ORM-ish thing for your POCO's

    C#dotnetorm
    View on GitHub↗2,139
  • django/djangodjango avatar

    django/django

    87,878View on GitHub↗

    Django is a full-stack web framework designed for rapid backend development. It provides an integrated environment for building data-driven applications by combining an object-relational mapping layer for database management with a modular request-response pipeline for handling HTTP traffic. The framework emphasizes security and maintainability, offering a suite of tools to protect against common web vulnerabilities while decoupling site structure from implementation through a centralized URL routing system. A defining characteristic of the framework is its ability to generate production-read

    Pythonappsdjangoframework
    View on GitHub↗87,878
  • giorgi/entityframework.exceptionsGiorgi avatar

    Giorgi/EntityFramework.Exceptions

    1,724View on GitHub↗

    Strongly typed exceptions for Entity Framework Core. Supports SQLServer, PostgreSQL, SQLite, Oracle and MySql.

    C#database-exceptionsdotnet-coreentity-framework
    View on GitHub↗1,724
  • go-macaron/macarongo-macaron avatar

    go-macaron/macaron

    3,545View on GitHub↗

    Package macaron is a high productive and modular web framework in Go.

    Go
    View on GitHub↗3,545
  • gobuffalo/popgobuffalo avatar

    gobuffalo/pop

    1,511View on GitHub↗

    A Tasty Treat For All Your Database Needs

    Gocockroachdbdatabasegobuffalo
    View on GitHub↗1,511
  • jirfag/go-querysetJ

    jirfag/go-queryset

    0View on GitHub↗
    View on GitHub↗0
  • marlow/marlowM

    marlow/marlow

    0View on GitHub↗
    View on GitHub↗0
  • phongnguyend/entityframeworkcore.sqlserver.simplebulksphongnguyend avatar

    phongnguyend/EntityFrameworkCore.SqlServer.SimpleBulks

    200View on GitHub↗

    Fast and simple bulk insert (retain client populated Ids or return db generated Ids), bulk update, bulk delete, bulk merge and bulk match for SQL Server.

    C#bulkdeletebulkinsertbulkmerge
    View on GitHub↗200
  • abrahambotros/loreA

    abrahambotros/lore

    0View on GitHub↗
    View on GitHub↗0
  • borisdj/efcore.bulkextensionsborisdj avatar

    borisdj/EFCore.BulkExtensions

    3,996View on GitHub↗

    EFCore.BulkExtensions is a library for executing high-performance batch insert, update, and delete operations within the Entity Framework Core ecosystem. It functions as a database batch processing toolkit and a wrapper for native SQL Bulk Copy to enable faster data ingestion and synchronization across multiple database providers. The library provides specialized capabilities for relational data synchronization, allowing users to align database tables with local entity lists through bulk upserts and conditional synchronization. It also supports relational data graph insertions, which enable t

    C#batchbulkcopy
    View on GitHub↗3,996
  • albrow/zoomA

    albrow/zoom

    0View on GitHub↗
    View on GitHub↗0
  • coocood/qbsC

    coocood/qbs

    0View on GitHub↗
    View on GitHub↗0
  • fs02/grimoireF

    Fs02/grimoire

    0View on GitHub↗
    View on GitHub↗0
  • gin-gonic/gingin-gonic avatar

    gin-gonic/gin

    88,694View on GitHub↗

    Gin is a web framework designed for building high-performance web services and APIs. It functions as a middleware-oriented engine that processes incoming HTTP requests through a sequential chain of handlers, allowing for the modular management of cross-cutting concerns such as authentication and logging. The framework utilizes a radix tree data structure to perform request routing, ensuring high-speed path matching with minimal memory overhead. It distinguishes itself by employing a zero-reflection dispatch mechanism that invokes handler functions through static type assertions, avoiding the

    Goframeworkgingo
    View on GitHub↗88,694
  • go-gorm/gormgo-gorm avatar

    go-gorm/gorm

    39,798View on GitHub↗

    GORM is a developer-focused object-relational mapping library for Go that provides a comprehensive data persistence framework. It serves as a database access layer, allowing developers to map application structures to database tables and perform CRUD operations using a fluent, type-safe query builder instead of writing raw SQL. The library distinguishes itself through its association-aware persistence, which automatically tracks and synchronizes complex entity relationships during database operations. It utilizes a driver-agnostic interface to maintain consistent behavior across various stora

    Gogogolanggorm
    View on GitHub↗39,798
  • go-gorp/gorpgo-gorp avatar

    go-gorp/gorp

    3,751View on GitHub↗

    Gorp is a lightweight object-relational mapper for Go that binds structs to relational database tables. It functions as a relational data mapper and SQL dialect abstraction layer, automating the translation between application data and relational rows. The project provides a translation layer that generates vendor-specific SQL for PostgreSQL, MySQL, SQLite, Oracle, and SQL Server. It distinguishes itself by implementing optimistic locking via version columns to prevent concurrent update conflicts and providing a database schema generator to create tables and indexes from object definitions.

    Go
    View on GitHub↗3,751
  • go-reform/reformgo-reform avatar

    go-reform/reform

    1,457View on GitHub↗

    A better ORM for Go, based on non-empty interfaces and code generation.

    Gogogolanghacktoberfest
    View on GitHub↗1,457
  • go-rel/relG

    go-rel/rel

    0View on GitHub↗
    View on GitHub↗0
  • gosuri/go-storeG

    gosuri/go-store

    0View on GitHub↗
    View on GitHub↗0
  • huandu/go-sqlbuilderhuandu avatar

    huandu/go-sqlbuilder

    1,711View on GitHub↗

    A flexible and powerful SQL string builder library plus a zero-config ORM.

    Godatabasegohiveql
    View on GitHub↗1,711
  • jschoedt/go-firestormJ

    jschoedt/go-firestorm

    0View on GitHub↗
    View on GitHub↗0
  • labstack/echolabstack avatar

    labstack/echo

    32,451View on GitHub↗

    Echo is a high-performance, lightweight web framework for Go designed for building scalable RESTful APIs and web services. It provides a centralized environment for mapping network requests to handler functions, utilizing a fast radix-tree routing engine to ensure efficient request dispatching. The framework is built around a modular, middleware-centric pipeline that allows developers to execute reusable logic for cross-cutting concerns like authentication, logging, and security across the entire application. What distinguishes Echo is its focus on developer productivity through structured da

    Goechogohttp2
    View on GitHub↗32,451
  • mikependon/repodbmikependon avatar

    mikependon/RepoDB

    1,873View on GitHub↗

    A hybrid ORM library for .NET.

    C#bulk-operationcsharpdotnet
    View on GitHub↗1,873
  • volatiletech/sqlboilerV

    volatiletech/sqlboiler

    0View on GitHub↗
    View on GitHub↗0