Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mgcrea/fastify-session-prisma-store
Prisma store for fastify-session
https://github.com/mgcrea/fastify-session-prisma-store
auth fastify postgresql prisma session
Last synced: about 2 months ago
JSON representation
Prisma store for fastify-session
- Host: GitHub
- URL: https://github.com/mgcrea/fastify-session-prisma-store
- Owner: mgcrea
- License: mit
- Created: 2022-02-18T10:43:09.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-07T15:17:19.000Z (10 months ago)
- Last Synced: 2024-05-18T19:50:12.825Z (7 months ago)
- Topics: auth, fastify, postgresql, prisma, session
- Language: TypeScript
- Homepage:
- Size: 459 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# FastifySession PrismaStore
## Features
[Prisma](https://prisma.io) session store for [fastify](https://github.com/fastify/fastify).
- Requires [@mgcrea/fastify-session](https://github.com/mgcrea/fastify-session) to handle sessions.
- Written in [TypeScript](https://www.typescriptlang.org/) for static type checking with exported types along the library.
- Built by [tsup](https://tsup.egoist.dev) to provide both CommonJS and ESM packages.## Install
```bash
npm install fastify-cookie @mgcrea/fastify-session @mgcrea/fastify-session-prisma-store
# or
pnpm add fastify-cookie @mgcrea/fastify-session @mgcrea/fastify-session-prisma-store
```## Quickstart
Add the following table definition to your `schema.prisma`:
```prisma
model Session {
id BigInt @id @default(autoincrement()) @db.BigInt
sid String @unique
expires DateTime
data Json
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@map("sessions")
}
``````ts
import createFastify, { FastifyInstance, FastifyServerOptions } from "fastify";
import fastifyCookie from "fastify-cookie";
import PrismaStore from "@mgcrea/fastify-session-prisma-store";
import fastifySession from "@mgcrea/fastify-session";
import { prisma } from "./config/prisma";const SESSION_TTL = 864e3; // 1 day in seconds
export const buildFastify = (options?: FastifyServerOptions): FastifyInstance => {
const fastify = createFastify(options);fastify.register(fastifyCookie);
fastify.register(fastifySession, {
store: new PrismaStore({ prisma }),
secret: "a secret with minimum length of 32 characters",
cookie: { maxAge: SESSION_TTL },
});return fastify;
};
```## Debug
You can use the `DEBUG` environment variable to toggle the [debug](https://github.com/debug-js/debug) output for this package:
```sh
DEBUG=fastify-session-prisma-store npm start
```## Authors
- [Olivier Louvignes](https://github.com/mgcrea) <>
## License
```txt
The MIT LicenseCopyright (c) 2023 Olivier Louvignes
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```