Skip to content

Instantly share code, notes, and snippets.

View s-kris's full-sized avatar

Sai Krishna s-kris

View GitHub Profile
@s-kris
s-kris / fauna-adapter.js
Last active April 19, 2022 12:54
faunadb adapter for next-auth for next.js
// followed from next-auth repo: https://github.com/nextauthjs/next-auth
// create faunadb server key
// create collections: users, accounts, sessions, verificationRequests
// create required indexes
import faunadb, { query as q } from 'faunadb';
import { v4 as uuidv4 } from 'uuid';
import { createHash, randomBytes } from 'crypto';