@sidebase/nuxt-user
v0.0.1-alpha.2
Published
[![npm version][npm-version-src]][npm-version-href] [![npm downloads][npm-downloads-src]][npm-downloads-href] [![GitHub stars](https://badgen.net/github/stars/sidebase/nuxt-user)](https://GitHub.com/sidebase/nuxt-user/) [![License][license-src]][license-h
Downloads
2
Readme
🔐 nuxt-user
Nuxt user authentication and sessions via NextAuth.js.
nuxt-user
wraps NextAuth.js to offer the reliability & convenience of a 12k star library to the nuxt 3 ecosystem with a native developer experience (DX).
Quick Start
- Install the package:
npm i -D @sidebase/nuxt-user
- Add the package to your
nuxt.config.ts
:export default defineNuxtConfig({ modules: ['@sidebase/nuxt-user'], })
- Done! You can now use all user-related functionality, for example:
- client-side (e.g., from
.vue
files):const { status, data, signIn, signOut, } = await useSession({ // Whether a session is required. If it is, a redirect to the signin page will happen if no active session exists required: true }) // Session status: `unauthenticated`, `loading`, `authenticated` status.value // Session data, e.g., expiration, user.email, ... data.value // Start the unbranded sign-in flow signIn() // Logout the user await signOut()
- client-side (e.g., from
There's more supported methods in the useSession
composable, you can create authentication middlewares for your app and more - read the documentation below.
Features
nuxt-user
is still under active development. The goal of this library is to reach feature-parity with NextAuth.js
. Currently, the library supports:
- ✔️ Client Library:
useSession
composable to:signIn
,signOut
,getCsrfToken
,getProviders
,getSession
- full typescript support for all methods and property
- ✔️ REST API:
GET /signin
,POST /signin/:provider
,GET/POST /callback/:provider
,GET /signout
,POST /signout
,GET /session
,GET /csrf
,GET /providers
- ✔️ Persistent sessions across requests
- ✔️ Client-side middleware protection
- ✔️ Server-side middleware and endpoint protection
Demo Page
Visit the nuxt-user
demo page here:
You can find the full source code here.
Module Playground
This module also has it's own playground, you can also use that to get familiar with it and play around a bit:
> git clone https://github.com/sidebase/nuxt-user
> cd nuxt-user
> npm i
> npm run dev:prepare
> npm run dev
# TODO: Add instructions to add example provider
# -> open http://localhost:3000
Note: The playground has considerably less polishing than the example page.
Documentation
First of all: If you want to have an interactive look, either check-out the demo page or the module playground in the sections above.
The nuxt-user
module takes care of authentication and sessions:
- authentication: The process of ensuring that somebody is who they claims to be. This is like a passport check at the border: You present some sort of proof that 100% tells the checking entity that you are who you claim to be (typically, this is your passport). The border agents checks the passport and let's you through.
- sessions: Persist the information that you have been authenticated for some duration across different requests. Additional data can be attached to a session, e.g., via the mail
or username
that may be part of data attached to the session. Note: If you need only sessions but no authentication, you can check-out nuxt-session.
In addition, you can use nuxt-user
to build authorization on top of the supported authentication + session mechanisms: As soon as you know "whos who", you can use this information to let somebody with the right email adress (for example) into a specific area. Right now, this is not supported out of the box.
Below we describe:
Client-side usage
This module allows you user-data access, signing in, signing out and more on the client-side via useSession
. It also allows you to defined middlewares that protects your page.
Session access and manipulation
The useSession
composable is your main gateway to accessing and manipulating session-state and data. Here's the main methdos you can use:
const {
status,
data,
getCsrfToken,
getProviders,
getSession,
signIn,
signOut,
} = await useSession({
// Whether a session is required. If it is, a redirect to the signin page will happen if no active session exists
required: true
})
// Session status, either `unauthenticated`, `loading`, `authenticated`, see https://next-auth.js.org/getting-started/client#signout
status.value
// Session data, either `undefined` (= authentication not attempted), `null` (= user unauthenticated), `loading` (= session loading in progress), see https://next-auth.js.org/getting-started/client#signout
data.value
// Get / Reload the current session from the server, pass `{ required: true }` to force a login if no session exists, see https://next-auth.js.org/getting-started/client#getsession
await getSession()
// Get the current CSRF token, usually you do not need this function, see https://next-auth.js.org/getting-started/client#signout
await getCsrfToken()
// Get the supported providers, e.g., to build your own login page, see https://next-auth.js.org/getting-started/client#getproviders
await getProviders()
// Trigger a sign in, see https://next-auth.js.org/getting-started/client#signin
signIn()
// Trigger a sign out, see https://next-auth.js.org/getting-started/client#signout
await signOut()
Session data
has the following interface:
interface DefaultSession {
user?: {
name?: string | null;
email?: string | null;
image?: string | null;
};
expires: ISODateString;
}
Note that this is only set when the use is logged-in and when the provider used to login the user provides the fields.
Redirects
You can also pass the callbackUrl
option to both the signIn
and the signOut
method. This allows you to redirect a user to a certain pages, after they've completed the action. This can be useful when a user attempts to open a page (/protected
) but has to go through external authentication (e.g., via their google account) first.
You can use it like:
signIn({ callbackUrl: '/protected' })
to redirect the user to the protected page they wanted to access after they've been authenticated.
You can do the same for signing out the user:
signOut({ callbackUrl: '/protected' })
E.g., here to redirect the user away from the already loaded, protected, page after signout (else, you will have to handle the redirect yourself).
Middlewares
You can use this library to define client-side middlewares. This library supports all of nuxt's supported approaches to define client-side middlewares, read on to learn how.
Global middlewares
Create a global authentication middleware that ensures that your user is authenticated no matter which page they visit. For this create a file in the middlewares
directory that has a .global.ts
post-fix. It should look like this:
// file: ~/middlewares/auth.global.ts
import { defineNuxtRouteMiddleware } from '#app'
import useSession from '~/composables/useSession'
export default defineNuxtRouteMiddleware(async () => {
await useSession()
})
That's it! This middleware will fetch a session and if no active session exists for the current user redirect to the login screen. If you want to write custom redirect logic, you could alter the above code to only apply to specific routes. Here is a global middleware that protects only the routes that start with /secret/
:
// file: ~/middlewares/auth.global.ts
import { defineNuxtRouteMiddleware } from '#app'
import useSession from '~/composables/useSession'
export default defineNuxtRouteMiddleware(async (to) => {
if (!to.path.startsWith('/secret/')) {
return
}
await useSession()
})
Here's a middleware that redirects to a custom login page:
// file: ~/middlewares/auth.global.ts
import { defineNuxtRouteMiddleware, navigateTo } from '#app'
import useSession from '~/composables/useSession'
export default defineNuxtRouteMiddleware(async (to) => {
// 1. Always allow access to the login page
if (to.path === '/login') {
return
}
// 2. Otherwise: Check status and redirect to login page
const { status } = await useSession({ required: false })
if (status.value !== 'authenticated') {
navigateTo('/login')
}
})
Named middlewares
Named middlewares behave similar to global middlewares but are not automatically applied to any pages.
To use them, first create a middleware:
// file: ~/middlewares/auth.ts
import { defineNuxtRouteMiddleware } from '#app'
import useSession from '~/composables/useSession'
export default defineNuxtRouteMiddleware(async () => {
await useSession()
})
Note that there's no .global.ts
postfix in the filename above! Then inside your pages use this middleware like this:
<!-- file: ~/pages/protected.vue -->
<template>
<div>I'm a secret!</div>
</template>
<script setup lang="ts">
definePageMeta({
middleware: ['auth']
})
</script>
Note: definePageMeta
can only be used inside the pages/
directory!
Nuxt now calls the auth.ts
middleware on every visit to this page.
Inline middlewares
To define a named middleware, you need to use definePageMeta
as described in the nuxt docs. Then you can just call useSession
as in the other middlewares. Here's an example that would protect just the page itself:
<!-- file: ~/pages/protected.vue -->
<template>
<div>I'm a secret!</div>
</template>
<script setup lang="ts">
definePageMeta({
middleware: async () => {
await useSession()
}
})
</script>
Note: definePageMeta
can only be used inside the pages/
directory!
Server-side usage
On the server side you can get access to the current session like this:
import { getServerSession } from '#sidebase/server'
export default eventHandler(async (event) => {
const session = await getServerSession(event)
})
This is inspired by the getServerSession of NextAuth.js. It also avoids an external, internet call to the GET /api/auth/sessions
endpoint, instead directly calling a pure JS-method.
Server-side usage
To protect an endpoint with, check the session after fetching it:
// file: ~/server/api/protected.get.ts
import { getServerSession } from '#sidebase/server'
export default eventHandler(async (event) => {
const session = await getServerSession(event)
if (!session) {
return { status: 'unauthenticated!' }
}
return { status: 'authenticated!' }
})
Server-side middlewares
You can also use this in a nuxt server middleware to protect multiple pages at once and keep the authentication logic out of your endpoints:
// file: ~/server/middleware/auth.ts
import { getServerSession } from '#sidebase/server'
export default eventHandler(async (event) => {
const session = await getServerSession(event)
if (!session) {
throw createError({ statusMessage: 'Unauthenticated', statusCode: 403 })
}
})
REST API
All endpoints that NextAuth.js supports are also supported by nuxt-user
:
GET /signin
,POST /signin/:provider
,GET/POST /callback/:provider
,GET /signout
,POST /signout
,GET /session
,GET /csrf
,GET /providers
You can directly interact with them if you wish to, it's probably a better idea to use useSession
where possible though. See the full rest API documentation of NextAuth.js here.
Configuration
Prior Work and Module Concept
The idea of this library is to re-use all the open-source implementation that already exist in the JS ecosystem instead of rolling our own. The idea was born when researching through the ecosystem of framework-specific authentication libraries to figure out what the best implementation approach for a state-of-the-art nuxt 3 authentication library would be.
During research it became clear that implementing everything from scratch will be:
- a lot of work that has already been open-sourced by others,
- error prone as authentication has a lot of intricacies that need to be resolved in order to get it right,
- hard to maintain as authentication providers come and go,
- hard to build initial trust for as authentication is important and cannot go wrong,
In order to avoid these problems without taking forever (leaving nuxt without an authentication library in the meantime), we decided to investigate if we can wrap NextAuth.js
, the most popular authentication library in the Next.js ecosystem by far and a trusted, well maintained one at that!
In our investigation we found prior attempts to make NextAuth.js framework agnostic. These have more or less come to fruition, so far mostly resulting in some PoCs and example apps. Looking at these was quite helpful to get started. In particular, big pushes in the right direction came from:
- NextAuth.js app examples
- Various comments, proposals, ... of this thread, special thanks to @brillout for starting the discussion, @balazsorban44 for NextAuth.js and encouraging the discussion, @wobsoriano for adding PoCs for multiple languages
The main part of the work was to piece everything together, resolve some outstanding issues with existing PoCs, add new things where nothing existed yet, e.g., for the client useSession
composable by going through the NextAuth.js client code and translating it to a nuxt 3 approach.
Project Roadmap
Roughly, the roadmap of nuxt-user
is:
- Reach client-side feature parity: There's still a lot of options, configuration and behvaior from the client-side NextAuth.js module that we do not support yet. We first want to reach feature parity on this front,
- Reach configuration & server-side parity: Extending the user data model, ensuring full typescript support in doing that, allowing correct configuration of all supported backends and session storage mediums
- Fill in missing gaps, add some of our own: There's many ideas we have to support extended user management, maybe discuss whether we want to better support the
local
/credentials
flow than NextAuth.js does out of the box (they don't do it for good reasons, so, there really is an honest discussion to be had), adding more UI focused components that automatically and easily wrap your app in a nice auth page, ...
We also want to listen to all suggestions, feature requests, bug reports, ... from you. So if you have any ideas, please open an issue or reach out to us on Twitter or via E-Mail.
Development
- Run
npm run dev:prepare
to generate type stubs. - Use
npm run dev
to start the module playground in development mode. - Run
npm run lint
to run eslint - Run
npm run type
to run typescheck via tsc - Run
npm publish --access public
to publish (bump version before)