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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@xenterprises/nuxt-x-app

v0.1.19

Published

A reusable Nuxt layer providing comprehensive authentication functionality with Stack Auth integration.

Readme

X Auth - Nuxt Authentication Layer

A reusable Nuxt layer providing comprehensive authentication functionality with Stack Auth integration.

Features

  • 🔐 Multiple Auth Methods: Credentials, OAuth, Magic Link, OTP
  • 🎨 Pre-built Components: Login, Signup, Password Reset forms
  • 🧩 Composables: useXAuth, useXStackAuth for easy integration
  • ⚙️ Configurable: Customizable redirects and feature toggles
  • 🎯 TypeScript: Full TypeScript support with type definitions
  • 🎨 Styled: Beautiful UI components with Tailwind CSS and Nuxt UI

Installation

npm install @xenterprises/nuxt-x-app

Add to your nuxt.config.ts:

export default defineNuxtConfig({
  extends: ["@xenterprises/nuxt-x-app"],
});

Configuration

Configure the layer in your app.config.ts:

export default defineAppConfig({
  xAuth: {
    redirects: {
      login: "/auth/login",
      signup: "/auth/signup",
      afterLogin: "/",
      afterSignup: "/",
      afterLogout: "/auth/login",
    },
    features: {
      oauth: true,
      magicLink: true,
      otp: true,
      forgotPassword: true,
    },
  },
});

Environment Variables

Required Stack Auth configuration:

STACK_PROJECT_ID=your_project_id
STACK_PUBLISHABLE_CLIENT_KEY=your_publishable_key

Usage

Basic Authentication

<script setup>
const { login, signup, logout, user, isLoading } = useXAuth();

// Login
await login("[email protected]", "password");

// Signup
await signup("[email protected]", "password");

// Logout
await logout();
</script>

Available Pages

The layer provides these auth pages automatically:

  • /auth/login - Login form
  • /auth/signup - Signup form
  • /auth/forgot-password - Password reset
  • /auth/magic-link - Magic link authentication
  • /auth/otp - OTP verification
  • /auth/logout - Logout handler

Available Components

<template>
  <!-- Use the auth components directly -->
  <XAuthLogin />
  <XAuthSignup />
  <XAuthForgotPassword />
  <XAuthMagicLink />
  <XAuthOtp />
  <XAuthOAuthButton provider="google" />
</template>

Composables

useXAuth()

Main authentication composable with simplified interface:

const {
  // State
  user,
  isLoading,
  isAuthenticated,

  // Methods
  login,
  signup,
  logout,
  forgotPassword,
  loginWithProvider,
  sendOtp,
  verifyOtp,
  sendMagicLink,
} = useXAuth();

useXStackAuth()

Lower-level Stack Auth integration:

const {
  stackClient,
  currentUser,
  signInWithCredential,
  signUpWithCredential,
  signOut,
  getAuthHeaders,
} = useXStackAuth();

Development

The .playground directory contains a test application for developing the layer:

# Install dependencies
npm install

# Start development server
npm run dev

# Build for production
npm run build

Publishing

npm publish --access public

License

MIT