0.1.1 • Published 2 years ago

nuxt-auth-core v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

🚄 Nuxt Auth Core

npm version npm downloads License Nuxt

Bare minimum auth support for Nuxt apps

🚧 This module is an experimental work in progress 🚧

Checkout ./playground for usage.

Quick Setup

  1. Add nuxt-auth-core dependency to your project
# Using pnpm
pnpm add -D nuxt-auth-core

# Using yarn
yarn add --dev nuxt-auth-core

# Using npm
npm install --save-dev nuxt-auth-core
  1. Add nuxt-auth-core to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: ['nuxt-auth-core'],
})

That's it! You can now use My Module in your Nuxt app ✨

Development

# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release
0.1.1

2 years ago

0.1.0

2 years ago