awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
prisma avatar

prisma/prisma-client-jsArchived

0
View on GitHub↗
1,465 Stars·63 Forks·TypeScript·Apache-2.0·3 Aufrufe

Prisma Client Js

Prisma Client ist ein Datenbank-Client für Node.js- und TypeScript-Anwendungen, der eine typsichere Schnittstelle für die Interaktion mit relationalen Datenbanken bietet. Er fungiert als Object-Relational-Mapper, der deklarative Schemadefinitionen in stark typisierte Abfrageschnittstellen übersetzt und sicherstellt, dass Datenbankoperationen mit der zugrunde liegenden Datenstruktur übereinstimmen.

Die Bibliothek zeichnet sich dadurch aus, dass sie Typdefinitionen direkt aus einem Schemamodell generiert, was statische Analyse und IDE-Autovervollständigung während der Entwicklung ermöglicht. Durch die Abstraktion von Datenbankinteraktionen in eine einheitliche Abfragesprache standardisiert sie die Kommunikation über verschiedene Datenbank-Backends hinweg und eliminiert die Notwendigkeit manueller Abfragekonstruktion.

Das Projekt deckt eine breite Palette an Datenbankverwaltungsfunktionen ab, einschließlich automatisierter Schemamodellierung und der Ausführung validierter Datenoperationen. Es nutzt eine dedizierte Engine zur Handhabung der Abfrageverarbeitung und behält strikte Typsicherheit über den gesamten Anwendungs-Stack hinweg bei, um Laufzeitfehler zu verhindern.

Features

  • Node.js Database Integration - Provides a comprehensive database client for Node.js applications with automated type generation and query building.
  • Database ORMs - Functions as a type-safe object-relational mapper that generates query interfaces from schema definitions.
  • Type-Safe Database Clients - Generates strongly-typed interfaces for database operations to ensure compile-time safety.
  • Type-Safe Query Builders - Provides compile-time validation for database queries based on schema definitions to prevent runtime errors.
  • Compile-Time Schema Integrations - Transforms declarative data models into strongly typed client code to ensure database operations match the schema at compile time.
  • Database Agnostic Generators - Standardizes communication across different database backends by mapping diverse SQL dialects to a unified internal query language.
  • Fluent Query Builders - Provides a chainable, fluent API for constructing complex database queries without manual SQL writing.
  • Query Engine Binaries - Executes database operations through a high-performance Rust-based binary sidecar that communicates via local sockets.
  • Relational Database Management Systems - Simplifies complex relational database operations through an intuitive, type-safe interface.
  • Declarative Schema Languages - Uses a declarative schema language to define database structures and automatically generate application interfaces.
  • Type Definition Generators - Dynamically generates TypeScript interfaces that reflect the current database schema to enable IDE autocompletion and static analysis.

Star-Verlauf

Star-Verlauf für prisma/prisma-client-jsStar-Verlauf für prisma/prisma-client-js

KI-Suche

Entdecke weitere awesome Repositories

Beschreibe in einfachen Worten, was du brauchst — die KI bewertet tausende kuratierte Open-Source-Projekte nach Relevanz.

Start searching with AI

Kuratierte Suchen mit Prisma Client Js

Handverlesene Sammlungen, in denen Prisma Client Js vorkommt.
  • Node.js / TypeScript ORM
  • Typsichere TypeScript-ORM-Bibliotheken

Open-Source-Alternativen zu Prisma Client Js

Ähnliche Open-Source-Projekte, sortiert nach der Anzahl der gemeinsamen Funktionen mit Prisma Client Js.
  • ent/entAvatar von ent

    ent/ent

    17,110Auf GitHub ansehen↗

    Ent is a statically typed entity framework for Go that models database structures as a graph of nodes and edges. It functions as a code generation engine that transforms schema definitions into type-safe database clients, query builders, and migration scripts. By representing data as interconnected entities, the framework enables intuitive traversal of complex relationships and ensures that database interactions remain consistent with the application model at compile time. The framework distinguishes itself through its graph-based approach to data modeling and its reliance on compile-time cod

    Goententity-frameworkorm
    Auf GitHub ansehen↗17,110
  • aarondl/sqlboilerAvatar von aarondl

    aarondl/sqlboiler

    6,989Auf GitHub ansehen↗

    sqlboiler is a database-first ORM generator for Go that analyzes an existing database schema to produce strongly typed structures and query helpers. It functions as a schema-driven code generator, transforming database tables and relationships into executable Go source code. The project distinguishes itself through a type-safe query builder that uses chainable modifiers to construct SQL statements, eliminating the need for raw string concatenation. It utilizes customizable text templates to generate source code, allowing for the aliasing of schema entities and the creation of custom templates

    Godatabasegogolang
    Auf GitHub ansehen↗6,989
  • kysely-org/kyselyAvatar von kysely-org

    kysely-org/kysely

    13,969Auf GitHub ansehen↗

    Kysely is a TypeScript SQL query builder that provides a type-safe interface for constructing and executing database queries. It functions as a database layer that ensures schema compliance and prevents runtime errors by using a fluent interface and a programmable way to build complex SQL statements. The project features a type-safe database layer capable of inferring return types and aliases from SQL selections and joins. It also includes a SQL migration manager to track and apply schema changes across different environments to keep database versions synchronized. The toolkit covers relatio

    TypeScript
    Auf GitHub ansehen↗13,969
  • brendonovich/prisma-client-rustAvatar von Brendonovich

    Brendonovich/prisma-client-rust

    1,922Auf GitHub ansehen↗

    Prisma Client Rust is an object-relational mapping tool and database query builder designed for Rust applications. It functions by reading database schema definitions during the build process to generate strongly typed client code, ensuring that data structures are validated at compile time to prevent runtime errors. The project distinguishes itself through its use of compile-time schema introspection and a trait-based query builder, which together enforce type safety across all database interactions. By mapping raw database rows directly into native Rust structures, it provides a consistent

    Rustprismaprisma-clientprisma-client-rust
    Auf GitHub ansehen↗1,922
Alle 30 Alternativen zu Prisma Client Js anzeigen→

Häufig gestellte Fragen

Was macht prisma/prisma-client-js?

Prisma Client ist ein Datenbank-Client für Node.js- und TypeScript-Anwendungen, der eine typsichere Schnittstelle für die Interaktion mit relationalen Datenbanken bietet. Er fungiert als Object-Relational-Mapper, der deklarative Schemadefinitionen in stark typisierte Abfrageschnittstellen übersetzt und sicherstellt, dass Datenbankoperationen mit der zugrunde liegenden Datenstruktur übereinstimmen.

Was sind die Hauptfunktionen von prisma/prisma-client-js?

Die Hauptfunktionen von prisma/prisma-client-js sind: Node.js Database Integration, Database ORMs, Type-Safe Database Clients, Type-Safe Query Builders, Compile-Time Schema Integrations, Database Agnostic Generators, Fluent Query Builders, Query Engine Binaries.

Welche Open-Source-Alternativen gibt es zu prisma/prisma-client-js?

Open-Source-Alternativen zu prisma/prisma-client-js sind unter anderem: ent/ent — Ent is a statically typed entity framework for Go that models database structures as a graph of nodes and edges. It… aarondl/sqlboiler — sqlboiler is a database-first ORM generator for Go that analyzes an existing database schema to produce strongly typed… kysely-org/kysely — Kysely is a TypeScript SQL query builder that provides a type-safe interface for constructing and executing database… brendonovich/prisma-client-rust — Prisma Client Rust is an object-relational mapping tool and database query builder designed for Rust applications. It… simolus3/drift — Drift is a type-safe SQL persistence library and relational mapper that provides a structured way to map database… alibaba/alisql — AliSQL is a fork of MySQL by Alibaba that extends the relational database management system with enhancements for high…