npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nuxt-alt/auth

v3.1.7

Published

An alternative module to @nuxtjs/auth

Downloads

11,758

Readme

Info

This module is meant as an alternative to @nuxtjs/auth, except this is for nuxt3 only with no backwards compatibility support.

Setup

  1. Add @nuxt-alt/auth and @nuxt-alt/http dependency to your project
yarn add @nuxt-alt/auth @nuxt-alt/http
  1. Add @nuxt-alt/auth and @pinia/nuxt to the modules section of nuxt.config.ts

Note: you dont need to specify @nuxt-alt/http, it will automatically be added but if you want to manually add it, make sure it is below the auth module (and above the proxy module if you are using it). It also doesn't need pinia it will use nuxt's useState by default.

export default defineNuxtConfig({
    modules: [
        '@nuxt-alt/auth'
    ],
    auth: {
        /* module options */
    }
});

Documentation

Read Documentation

Changes

The module now uses '@nuxt-alt/http' to function, that module extends ohmyfetch. Please note that if you were using data to post data, you now need to use body since this is what ohmyfetch uses. If you intend to use ssr, please consider using the @nuxt-alt/proxy module.

Composable

A useAuth() composable is availale to use to access the auth methods.

Options

Most of the options are taken directly from the @nuxtjs/auth module. In addition there are some extra options available.

globalMiddleware

  • Type: Boolean
  • Default: false

Enables/disables the middleware to be used globally.

enableMiddleware

  • Type: Boolean
  • Default: true

Enables/disables the built-in middleware.

stores.state.namespace

  • Type: String
  • Default: auth

This is the namespace to use for nuxt useState.

stores.pinia.enabled

  • Type: Boolean
  • Default: false

Enable this option to use the pinia store, bey default this is disabled and nuxt's useState is used instead.

stores.pinia.namespace

  • Type: String
  • Default: auth

This is the namespace to use for the pinia store.

stores.local.enabled

  • Type: Boolean
  • Default: true

Enable this option to use the localStorage store.

stores.local.prefix

  • Type: String
  • Default: auth.

This sets the localStorage prefix.

stores.session.enabled

  • Type: Boolean
  • Default: true

Enable this option to use the sessionStorage store.

stores.session.prefix

  • Type: String
  • Default: auth.

Similar to the localstorage option, this is the prefix for session storage.

stores.cookie.enabled

  • Type: Boolean
  • Default: true

Enable this option to use the cookie storage.

stores.cookie.prefix

  • Type: String
  • Default: auth.

Similar to the localstorage option, this is the prefix for the cookie storage.

stores.cookie.options

  • Type: Object
  • Default: { path: '/' }

The default cookie storage options.

redirectStrategy

  • Type: query | storage
  • Default: storage

The type of redirection strategy you want to use, storage utilizng localStorage for redirects, query utilizing the route query parameters.

tokenValidationInterval

  • Type: Boolean | Number
  • Default: false

This is experimental. If set to true, default interval is 1000ms, otherwise set time in milliseconds. This is how often the module with attempt to validate the token for expiry.

resetOnResponseError

  • Type: Boolean | Function
  • Default: false

When enabled it will reset when there's a 401 error in any of the responses. You are able to turn this into a function to handle this yourself:

auth: {
    //... module options
    resetOnResponseError: (error, auth, scheme) => {
       if (error.response.status === 401) {
           scheme.reset?.()
           auth.redirect('login')
       }
   },
}

TypeScript (2.6.0+)

The user information can be edited like so for TypeScript:

declare module '@nuxt-alt/auth' {
    interface UserInfo {
        email: string
        name: string
    }
}

Tokens (Types)

In addition to Auth Tokens;

By default the $auth.strategy getter uses the Scheme type which does not have token or refreshToken property types. To help with this, a $auth.refreshStrategy and a $auth.tokenStrategy getter have been added for typing. They all do the same thing, this is just meant for type hinting.

Oauth2

Oauth2 now has client window authentication thanks to this pull request: https://github.com/nuxt-community/auth-module/pull/1746

Properties have been changed to:

clientWindow

  • Type: Boolean
  • Default: false

Enable/disable the use of a popup for client authentication.

clientWidth

  • Type: Number
  • Default: 400

The width of the client window.

clientHieght

  • Type: Number
  • Default: 600

The width of the client window.

Aliases

Available aliases to use within nuxt

  • #auth/runtime
  • #auth/utils
  • #auth/providers