Module - Auth
Auth is an important aspect of most applications. This module is here to help you with that. It’s using lucia package in the background and everything prepared to just use it!
To use it, here is the idea, just tune to your needs:
import { auth } from 'firstly/auth'import { firstly } from 'firstly/server'
// import { github } from 'firstly/auth/server'
const Role = { ADMIN: 'admin',}
export const remultApi = firstly({ modules: [ auth({ providers: { // enable demo account (usefull for testing as there is no password!) demo: [ // Few demo accounts { name: 'Noam' }, { name: 'Ermin' }, { name: 'JYC', roles: [Role.ADMIN] }, ],
// enable login / password password: {},
// enable otp login otp: { send: async (data) => { console.info(`OTP to send`, JSON.stringify(data, null, 2)) }, },
// enable oauth login oAuths: [ // github example (we are waiting for you to add more providers / examples!) // github({ // authorizationURLOptions: { scopes: ['user:email'] }, // log: true, // }), ], }, }), ],})