create-authenik8-app 2.3.3 → 2.3.5
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 +12 -11
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
|
|
2
|
-
<h1 align="center"
|
|
2
|
+
<h1 align="center">✨ create-authenik8-app ✨</h1>
|
|
3
3
|
|
|
4
|
+
<p align="center">
|
|
5
|
+
<i>Launch secure, production-ready authentication in seconds.</i>
|
|
6
|
+
</p>
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
<p align="center">
|
|
9
|
+
If this saved you time, a ⭐ helps a lot
|
|
10
|
+
</p>
|
|
6
11
|
|
|
7
12
|
|
|
8
13
|
<p align="center">
|
|
9
14
|
<b> A lightweight authentication infrastructure generator powered by an internal Identity Engine.</b>
|
|
10
15
|
</p>
|
|
11
16
|
|
|
12
|
-
|
|
13
|
-

|
|
15
|
-

|
|
17
|
+

|
|
18
|
+
[](https://securityscorecards.dev/viewer/?uri=github.com/COD434/create-authenik8-app)
|
|
16
19
|

|
|
17
20
|
[](https://github.com/COD434/create-authenik8-app/actions/workflows/ci.yml)
|
|
18
21
|
|
|
@@ -70,7 +73,7 @@ Your production-ready auth backend will be ready in 50 seconds.
|
|
|
70
73
|
|
|
71
74
|
---
|
|
72
75
|
|
|
73
|
-
## Why
|
|
76
|
+
## Why create-authenik8-app
|
|
74
77
|
|
|
75
78
|
Most developers waste days (or weeks) on:
|
|
76
79
|
|
|
@@ -82,7 +85,6 @@ Most developers waste days (or weeks) on:
|
|
|
82
85
|
|
|
83
86
|
• Proper access control
|
|
84
87
|
|
|
85
|
-
|
|
86
88
|
Authenik8 provides all of this out of the box so you can start building your API immediately.
|
|
87
89
|
|
|
88
90
|
|
|
@@ -101,7 +103,6 @@ Bash
|
|
|
101
103
|
redis-server --daemonize yes
|
|
102
104
|
```
|
|
103
105
|
|
|
104
|
-
|
|
105
106
|
---
|
|
106
107
|
|
|
107
108
|
## Environment Variables
|
|
@@ -134,7 +135,7 @@ app.get("/admin", auth.requireAdmin, (req, res) => {
|
|
|
134
135
|
|
|
135
136
|
### Testing
|
|
136
137
|
|
|
137
|
-
- Full test suite with ``
|
|
138
|
+
- Full test suite with ``80%`` coverage (actively improving)
|
|
138
139
|
|
|
139
140
|
- CI runs tests + coverage on every push and PR
|
|
140
141
|
|
|
@@ -161,7 +162,7 @@ This design makes future additions (MFA, WebAuthn, etc.) much cleaner.
|
|
|
161
162
|
---
|
|
162
163
|
## Powered by
|
|
163
164
|
|
|
164
|
-
authenik8-core (v1.0.
|
|
165
|
+
authenik8-core (v1.0.29) battle-tested identity & token engine
|
|
165
166
|
|
|
166
167
|
---
|
|
167
168
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-authenik8-app",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.5",
|
|
4
4
|
"description": "⚡ Fast Express + TypeScript auth starter with secure JWT, refresh rotation, Redis, RBAC, OAuth & Prisma.\nPowered by the Authenik8 Identity Engine.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-authenik8-app": "dist/index.js"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"author": "Karabo Seeisa",
|
|
30
30
|
"type": "module",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"authenik8-core": "^1.0.
|
|
32
|
+
"authenik8-core": "^1.0.29",
|
|
33
33
|
"bun": "^1.3.12",
|
|
34
34
|
"chalk": "^5.6.2",
|
|
35
35
|
"fs-extra": "^11.3.4",
|
|
@@ -57,5 +57,8 @@
|
|
|
57
57
|
"repository": {
|
|
58
58
|
"type": "git",
|
|
59
59
|
"url": "https://github.com/COD434/create-authenik8-app.git"
|
|
60
|
+
},
|
|
61
|
+
"overrides": {
|
|
62
|
+
"brace-expansion": "1.1.13"
|
|
60
63
|
}
|
|
61
64
|
}
|