Popularity
8.0
Growing
Activity
9.5
Growing
1,937
26
93

Programming language: Go
License: Apache License 2.0
Tags: ORM    

Prisma alternatives and similar packages

Based on the "ORM" category.
Alternatively, view prisma-client-go alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Prisma or a related project?

Add another 'ORM' Package

README

Prisma Client Go Typesafe database access for Go             Quickstart   •   Website   •   Docs   •   API reference   •   Blog   •   Slack   •   Twitter

Deprecation note

Prisma Client Go is no longer officially maintained. Read this issue to learn more.

Description

Prisma Client Go is an auto-generated query builder that enables type-safe database access and reduces boilerplate. You can use it as an alternative to traditional ORMs such as gorm, xorm, sqlboiler and most database-specific tools.

It is part of the Prisma ecosystem. Prisma provides database tools for data access, declarative data modeling, schema migrations and visual data management.

NOTE: Prisma Client Go is currently offered under our early access program. There will be documented breaking changes with new releases.

Getting started

To get started, [read our quickstart tutorial](./docs/quickstart.md) to add Prisma to your project in just a few minutes.

You also might want to read [deployment tips](./docs/deploy.md) and the [full API reference](./docs/reference).

Notes

The go client works slightly different than the normal Prisma tooling. When you're using the go client, whenever you see Prisma CLI commands such as prisma ..., you should always write go run github.com/prisma/prisma-client-go ... instead.

If you just work with the Go client and don't have (or want) the NodeJS Prisma CLI installed, you can set up an alias so that you can write prisma commands as usual, but it'll invoke the real locally bundled Prisma CLI. To do that, edit your ~/.bashrc or ~/.zshrc and add:

alias prisma="go run github.com/prisma/prisma-client-go"

Now prisma generate and any other command will work, and it'll just run 1go run github.com/prisma/prisma-client-go generate under the hood.

Contributing

Check out our [advanced contributing guide](./CONTRIBUTING.md).

Security

If you have a security issue to report, please contact us at [email protected]


*Note that all licence references and agreements mentioned in the Prisma README section above are relevant to that project's source code only.