11 repository-uri
Automated generation of boilerplate code based on database schema analysis.
Distinct from Boilerplate Generators: Specific to generating models and controllers from database schemas, whereas boilerplate generators are more generic.
Explore 11 awesome GitHub repositories matching development tools & productivity · Database Schema Scaffolding. Refine with filters or upvote what's useful.
Yii2 is a professional PHP web framework designed for developing high-performance, scalable enterprise web applications. It utilizes a Model-View-Controller architecture to separate data logic, user interfaces, and request handling, ensuring maintainability for large-scale projects. The framework includes a built-in PHP code generator that automates the creation of boilerplate controllers and models by scanning database schemas. It provides an Active Record object-relational mapping system where classes represent tables and instances represent rows to manage data persistence. Additional capa
Includes a built-in code generator that automates the creation of boilerplate controllers and models by scanning database schemas.
This project is a Node.js client for PostgreSQL databases, providing a protocol parser to translate raw binary streams into JavaScript objects. It serves as a driver for executing queries, managing data, and integrating Node.js applications with PostgreSQL backends. The library includes a connection pool manager to reduce network overhead by caching reusable connections and a result streamer that uses cursors to retrieve large datasets incrementally. It also functions as an event listener for subscribing to asynchronous server-side notifications to trigger real-time application events. Broad
Automates the creation of application structures based on the existing database schema.
Sea-ORM is an asynchronous SQL object-relational mapper and database toolkit for mapping relational tables to strongly typed objects. It provides a relational database mapper for performing CRUD operations across MySQL, PostgreSQL, and SQLite, and includes a programmatic dynamic query builder for constructing complex SQL statements. The project distinguishes itself by providing a GraphQL schema generator that transforms database entities into typed schemas with built-in pagination and filters. It also features a dedicated database migration tool for defining and applying versioned schema chan
Automatically generates strongly typed data models and boilerplate entities from existing database schemas.
Epoxy is an Android library for building complex RecyclerView screens using a model-driven approach. It generates RecyclerView adapter models at compile time from annotated custom views, data binding layouts, or view holders, eliminating the manual boilerplate typically associated with view holders and adapters. The library provides a diffing engine that automatically compares model lists and applies minimal updates with animations for insertions, removals, and moves. The library distinguishes itself through its controller-based model building, where a controller class with a buildModels meth
Allows generated models to inherit from a custom base class that defines shared attributes and binding logic.
Ecto is an Elixir database toolkit that maps database rows to Elixir structs and validates data changes through changesets before persistence. It provides a language-integrated query syntax for composing database queries, building them incrementally and securely with compile-time expansion into safe SQL. The toolkit connects to multiple database backends including PostgreSQL, MySQL, MSSQL, SQLite3, ClickHouse, and ETS through a pluggable adapter interface. It supports eager and lazy preloading of associated records to eliminate N+1 query problems, and can store nested data structures as embed
Generates schema definitions and migration files through automated task runners.
Blog.Core este un boilerplate de backend pregătit pentru producție, destinat construirii de API-uri enterprise și microservicii folosind ASP.NET Core. Oferă o infrastructură fundamentală pentru sisteme distribuite, inclusiv instrumente pentru scaffolding-ul bazat pe baza de date și implementarea de framework-uri API multi-tenant. Proiectul se distinge prin generarea automată a stratului de date, care produce modele de entități și straturi de repository direct din schemele bazei de date. Implementează un sistem centralizat de gestionare a identității folosind protocoale standard de server de identitate pentru a gestiona autentificarea și autorizarea în mai mulți clienți și proiecte. Framework-ul acoperă o gamă largă de capabilități enterprise, inclusiv procesarea asincronă a mesajelor prin event bus-uri, caching distribuit în memorie și separarea traficului de citire-scriere în baza de date. Încorporează controlul accesului bazat pe roluri cu restricții de date departamentale și oferă observabilitate a sistemului prin profilarea performanței API și auditarea activității. Sistemul include, de asemenea, suport pentru comunicarea bidirecțională server-client pentru notificări push, integrare de căutare full-text și configurare centralizată a serviciilor.
Generates entity models and repository boilerplate code directly from existing database schemas.
Flask-SQLAlchemy is a toolkit that integrates the SQLAlchemy relational database toolkit with the Flask web framework. It enables relational data modeling by defining database table structures as Python classes and manages the persistence and retrieval of database records within a web application. The project binds database session lifecycles to the active application request context to ensure automatic connection cleanup. It provides specialized utilities for web data access, including query result pagination and a mechanism to automatically trigger 404 Not Found responses when a requested d
Supports defining custom declarative base classes to apply shared logic across all database models.
This project is a command-line schema-to-code converter designed to transform diverse data specifications into type-safe Python data structures. It functions as a generator for Pydantic models, dataclasses, and typed dictionaries, enabling developers to maintain synchronization between evolving data contracts and application code. By parsing formats such as JSON Schema, OpenAPI, AsyncAPI, Protobuf, and Avro, the tool automates the creation of native classes that reflect the constraints and metadata defined in the source specifications. The generator distinguishes itself through a highly confi
Supports custom base class definitions and mixins to inject shared functionality into generated data models.
This project is a code scaffolding tool and database-to-code mapper for Laravel. It functions as a CRUD generator and REST API generator that automates the creation of models, controllers, and administrative interfaces based on database schemas. The tool is distinguished by its template-driven approach, using customizable stub files that allow developers to override default blueprints to enforce specific architectural standards. It provides complete administrative dashboard boilerplates, including integrated authentication, themed UI layouts, and searchable data tables. The system covers a b
Provides automated generation of boilerplate code by analyzing existing database schemas.
linq2db is a type-safe object-relational mapper that translates LINQ expressions into optimized SQL queries for multiple database providers. It functions as a database mapper that links classes to tables and includes a SQL query builder and a command-line schema tool for generating data classes from existing databases. The project provides high-performance bulk data processing for inserting and loading large volumes of records via batch or binary copy methods. It also supports advanced SQL operations, including window functions, common table expressions for recursive hierarchical querying, an
Includes a command-line tool for generating data classes based on an existing database schema.
Acest instrument este un generator automat de cod backend care creează dashboard-uri administrative prin inspectarea structurilor bazelor de date relaționale existente. Acesta funcționează ca un utilitar de scaffolding bazat pe schemă, analizând definițiile tabelelor și constrângerile de chei străine pentru a produce controllere server-side funcționale și interfețe de utilizator pentru gestionarea înregistrărilor. Proiectul se distinge prin ejectarea codului sursă static, care scoate fișiere lizibile pentru oameni pe care dezvoltatorii le pot modifica sau extinde manual. Prin analizarea metadatelor bazei de date, acesta mapează automat datele relaționale la componente de selecție intuitive și înlocuiește identificatorii numerici brute cu etichete lizibile, asigurând că vizualizările administrative generate rămân consistente și responsive pe diferite dimensiuni de ecran. Output-ul generat include logica server-side necesară și layout-urile de dashboard necesare pentru a gestiona înregistrările bazei de date. Deoarece instrumentul produce fișiere sursă standard în loc de binare opace, acesta permite personalizarea completă a controllerelor și vizualizărilor subiacente pentru a se adapta cerințelor specifice ale proiectului.
Reads existing table structures and foreign key relationships to produce functional backend code and user views.