6.0.0 • Published 9 months ago

fastify-prisma-client v6.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

fastify-prisma-client

Version

easy access to prisma client

Warning !

This package is for ease of access only so you must install prisma.

Installation

yarn add prisma fastify-prisma-client
or
npm install prisma fastify-prisma-client

Do not forget prisma generate ❗

yarn prisma generate
or
npx prisma generate

Usage

Register plugin

import fastifyPrismaClient from "fastify-prisma-client";

fastify.register(fastifyPrismaClient);

If you use with TypeScript , you have to give this type to avoid error

import Fastify, { FastifyInstance } from "fastify";

const fastify: FastifyInstance = Fastify();

Prisma client options are available and you can edit them

fastify.register(fastifyPrismaClient, {});

Use with fastify decorate

fastify.get("/users", async (request, reply) => {
  const users = await fastify.prisma.users.findMany();
  return { users };
});

Use with request decorate

fastify.get("/users", async (request, reply) => {
  const users = await request.prisma.users.findMany();
  return { users };
});

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

6.0.0

9 months ago

5.0.0

1 year ago

3.1.1

2 years ago

3.0.2

2 years ago

3.1.0

2 years ago

4.0.0

1 year ago

2.1.2

2 years ago

2.1.3

2 years ago

3.0.0

2 years ago

2.1.1

2 years ago

2.0.10

2 years ago

2.1.0

2 years ago

2.0.9

2 years ago

2.0.8

2 years ago

2.0.7

3 years ago

2.0.6

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

1.0.13

3 years ago

2.0.0

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.10

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago