1
- # Nuxt Auth Core
1
+ # Nuxt Auth Utils
2
2
3
3
[ ![ npm version] [ npm-version-src ]] [ npm-version-href ]
4
4
[ ![ npm downloads] [ npm-downloads-src ]] [ npm-downloads-href ]
5
5
[ ![ License] [ license-src ]] [ license-href ]
6
6
[ ![ Nuxt] [ nuxt-src ]] [ nuxt-href ]
7
7
8
- Minimalist Authentication module for Nuxt.
8
+ Minimalist Authentication module for Nuxt exposing Vue composables and server utils .
9
9
10
10
- [ ✨   ; Release Notes] ( /CHANGELOG.md )
11
- <!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/nuxt-auth-core ?file=playground%2Fapp.vue) -->
11
+ <!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/nuxt-auth-utils ?file=playground%2Fapp.vue) -->
12
12
<!-- - [📖 Documentation](https://example.com) -->
13
13
14
14
## Features
@@ -22,25 +22,25 @@ This module only works with SSR (server-side rendering) enabled as it uses serve
22
22
23
23
## Quick Setup
24
24
25
- 1 . Add ` nuxt-auth-core ` dependency to your project
25
+ 1 . Add ` nuxt-auth-utils ` dependency to your project
26
26
27
27
``` bash
28
28
# Using pnpm
29
- pnpm add -D nuxt-auth-core
29
+ pnpm add -D nuxt-auth-utils
30
30
31
31
# Using yarn
32
- yarn add --dev nuxt-auth-core
32
+ yarn add --dev nuxt-auth-utils
33
33
34
34
# Using npm
35
- npm install --save-dev nuxt-auth-core
35
+ npm install --save-dev nuxt-auth-utils
36
36
```
37
37
38
- 2 . Add ` nuxt-auth-core ` to the ` modules ` section of ` nuxt.config.ts `
38
+ 2 . Add ` nuxt-auth-utils ` to the ` modules ` section of ` nuxt.config.ts `
39
39
40
40
``` js
41
41
export default defineNuxtConfig ({
42
42
modules: [
43
- ' nuxt-auth-core '
43
+ ' nuxt-auth-utils '
44
44
]
45
45
})
46
46
```
@@ -190,14 +190,14 @@ npm run release
190
190
```
191
191
192
192
<!-- Badges -->
193
- [ npm-version-src ] : https://img.shields.io/npm/v/nuxt-auth-core /latest.svg?style=flat&colorA=18181B&colorB=28CF8D
194
- [ npm-version-href ] : https://npmjs.com/package/nuxt-auth-core
193
+ [ npm-version-src ] : https://img.shields.io/npm/v/nuxt-auth-utils /latest.svg?style=flat&colorA=18181B&colorB=28CF8D
194
+ [ npm-version-href ] : https://npmjs.com/package/nuxt-auth-utils
195
195
196
- [ npm-downloads-src ] : https://img.shields.io/npm/dm/nuxt-auth-core .svg?style=flat&colorA=18181B&colorB=28CF8D
197
- [ npm-downloads-href ] : https://npmjs.com/package/nuxt-auth-core
196
+ [ npm-downloads-src ] : https://img.shields.io/npm/dm/nuxt-auth-utils .svg?style=flat&colorA=18181B&colorB=28CF8D
197
+ [ npm-downloads-href ] : https://npmjs.com/package/nuxt-auth-utils
198
198
199
- [ license-src ] : https://img.shields.io/npm/l/nuxt-auth-core .svg?style=flat&colorA=18181B&colorB=28CF8D
200
- [ license-href ] : https://npmjs.com/package/nuxt-auth-core
199
+ [ license-src ] : https://img.shields.io/npm/l/nuxt-auth-utils .svg?style=flat&colorA=18181B&colorB=28CF8D
200
+ [ license-href ] : https://npmjs.com/package/nuxt-auth-utils
201
201
202
202
[ nuxt-src ] : https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js
203
203
[ nuxt-href ] : https://nuxt.com
0 commit comments