@bruno_crosier/edgedb-adapter
v0.1.0
Published
EdgeDB adapter for next-auth.
Downloads
4
Maintainers
Readme
Overview
This is the EdgeDB Adapter for next-auth
. This package can only be used in conjunction with the primary next-auth
package. It is not a standalone package.
You can find the EdgeDB schema in the docs at next-auth.js.org/adapters/edgedb.
Getting Started
- Install
next-auth
and@next-auth/edgedb-adapter
as well asedgedb
and@edgedb/generate
.
npm install next-auth edgedb @next-auth/edgedb-adapter
npm install @edgedb/generate --save-dev
- Add this adapter to your
pages/api/[...nextauth].js
next-auth configuration object.
import NextAuth from "next-auth"
import GoogleProvider from "next-auth/providers/google"
import { EdgeDBAdapter } from "@next-auth/edgedb-adapter"
import { createClient } from "edgedb"
const client = createClient()
// For more information on each option (and a full list of options) go to
// https://next-auth.js.org/configuration/options
export default NextAuth({
// https://next-auth.js.org/configuration/providers
providers: [],
adapter: EdgeDB(client)
...
})
Contributing
We're open to all community contributions! If you'd like to contribute in any way, please read our Contributing Guide.
License
ISC