@dashadmin/dash-auth 1.3.26 → 1.3.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1 +1,35 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @dashadmin/dash-auth
|
|
2
|
+
|
|
3
|
+
> Authentication utilities and auth provider for Dash.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Token handling, session helpers and the auth provider used by the admin to authenticate requests and guard resources.
|
|
8
|
+
|
|
9
|
+
## Key exports & features
|
|
10
|
+
|
|
11
|
+
- Auth provider
|
|
12
|
+
- Token/session helpers
|
|
13
|
+
- Login state utilities
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# From the public npm registry
|
|
19
|
+
npm install @dashadmin/dash-auth
|
|
20
|
+
|
|
21
|
+
# Or the local Verdaccio registry (unscoped)
|
|
22
|
+
npm install dash-auth --registry http://localhost:4873
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Internal Dash dependencies
|
|
26
|
+
|
|
27
|
+
`@dashadmin/dash-utils`
|
|
28
|
+
|
|
29
|
+
## Development & publishing
|
|
30
|
+
|
|
31
|
+
This package is part of the **dash-frontend-core** monorepo. See [`DEVELOPMENT.md`](../../DEVELOPMENT.md) for the source-modification workflow, local Verdaccio publishing, npm publishing and version-bump policy.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
_Part of the [Dash Framework](https://www.npmjs.com/org/dashadmin) · `@dashadmin` scope._
|