fullstx 1.0.0 → 1.0.2
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 +20 -0
- package/package.json +29 -7
- package/coverage/clover.xml +0 -1356
- package/coverage/coverage-final.json +0 -30
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/fullstx/index.html +0 -146
- package/coverage/lcov-report/fullstx/index.js.html +0 -379
- package/coverage/lcov-report/fullstx/lib/application.js.html +0 -1840
- package/coverage/lcov-report/fullstx/lib/browser-sync.js.html +0 -199
- package/coverage/lcov-report/fullstx/lib/database.js.html +0 -535
- package/coverage/lcov-report/fullstx/lib/errors.js.html +0 -154
- package/coverage/lcov-report/fullstx/lib/features/hooks.js.html +0 -151
- package/coverage/lcov-report/fullstx/lib/features/index.html +0 -176
- package/coverage/lcov-report/fullstx/lib/features/jwt.js.html +0 -214
- package/coverage/lcov-report/fullstx/lib/features/plugins.js.html +0 -172
- package/coverage/lcov-report/fullstx/lib/features/routing.js.html +0 -211
- package/coverage/lcov-report/fullstx/lib/features/utils.js.html +0 -1216
- package/coverage/lcov-report/fullstx/lib/index.html +0 -236
- package/coverage/lcov-report/fullstx/lib/middlewares/apiKey.js.html +0 -127
- package/coverage/lcov-report/fullstx/lib/middlewares/authorize.js.html +0 -115
- package/coverage/lcov-report/fullstx/lib/middlewares/basicAuth.js.html +0 -148
- package/coverage/lcov-report/fullstx/lib/middlewares/csp.js.html +0 -124
- package/coverage/lcov-report/fullstx/lib/middlewares/csrf.js.html +0 -178
- package/coverage/lcov-report/fullstx/lib/middlewares/htmx.js.html +0 -157
- package/coverage/lcov-report/fullstx/lib/middlewares/i18n.js.html +0 -175
- package/coverage/lcov-report/fullstx/lib/middlewares/index.html +0 -281
- package/coverage/lcov-report/fullstx/lib/middlewares/rateLimit.js.html +0 -169
- package/coverage/lcov-report/fullstx/lib/middlewares/redisCache.js.html +0 -154
- package/coverage/lcov-report/fullstx/lib/middlewares/requirePermission.js.html +0 -118
- package/coverage/lcov-report/fullstx/lib/middlewares/routeLocalization.js.html +0 -118
- package/coverage/lcov-report/fullstx/lib/middlewares/session.js.html +0 -133
- package/coverage/lcov-report/fullstx/lib/middlewares.js.html +0 -340
- package/coverage/lcov-report/fullstx/lib/radix-router.js.html +0 -418
- package/coverage/lcov-report/fullstx/lib/request.js.html +0 -328
- package/coverage/lcov-report/fullstx/lib/response.js.html +0 -610
- package/coverage/lcov-report/fullstx/lib/websocket.js.html +0 -166
- package/coverage/lcov-report/fullstx/router.js.html +0 -226
- package/coverage/lcov-report/fullstx/server.js.html +0 -664
- package/coverage/lcov-report/index.html +0 -161
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -210
- package/coverage/lcov.info +0 -2753
package/README.md
CHANGED
|
@@ -10,8 +10,28 @@ A high-performance, custom backend framework with a static file frontend. Equipp
|
|
|
10
10
|
- **🗜️ Auto-Compression**: Gzip and Brotli compression out of the box.
|
|
11
11
|
- **🧩 Extensible**: Built-in support for Sessions, SQLite, Knex, WebSockets, HTMX, and Sentry.
|
|
12
12
|
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
Scaffold a new Fullstx project instantly:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm create fullstx-app@latest my-project
|
|
19
|
+
# or
|
|
20
|
+
npx create-fullstx-app@latest my-project
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Then run your app:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
cd my-project
|
|
27
|
+
npm install
|
|
28
|
+
npm start
|
|
29
|
+
```
|
|
30
|
+
|
|
13
31
|
## Installation
|
|
14
32
|
|
|
33
|
+
Or install manually in an existing project:
|
|
34
|
+
|
|
15
35
|
```bash
|
|
16
36
|
npm install fullstx
|
|
17
37
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fullstx",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A high-performance, custom backend framework with built-in hot-reload.",
|
|
5
5
|
"author": "fullstx developer",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -40,22 +40,44 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@faker-js/faker": "^10.5.0",
|
|
43
|
-
"@sentry/node": "^10.62.0",
|
|
44
43
|
"browser-sync": "^3.0.4",
|
|
45
|
-
"bullmq": "^5.79.2",
|
|
46
44
|
"compression": "^1.8.1",
|
|
47
45
|
"dotenv": "^17.4.2",
|
|
48
46
|
"ejs": "^6.0.1",
|
|
49
47
|
"fast-json-stringify": "^7.0.0",
|
|
50
48
|
"jsonwebtoken": "^9.0.3",
|
|
51
|
-
"knex": "^3.3.0",
|
|
52
49
|
"multer": "^2.2.0",
|
|
53
|
-
"nodemailer": "^9.0.1",
|
|
54
|
-
"redis": "^6.0.1",
|
|
55
50
|
"sanitize-html": "^2.17.5",
|
|
56
|
-
"sqlite3": "^6.0.1",
|
|
57
51
|
"swagger-ui-dist": "^5.32.8",
|
|
58
52
|
"ws": "^8.21.0",
|
|
59
53
|
"zod": "^4.4.3"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"@sentry/node": "^10.62.0",
|
|
57
|
+
"bullmq": "^5.79.2",
|
|
58
|
+
"knex": "^3.3.0",
|
|
59
|
+
"nodemailer": "^9.0.1",
|
|
60
|
+
"redis": "^6.0.1",
|
|
61
|
+
"sqlite3": "^6.0.1"
|
|
62
|
+
},
|
|
63
|
+
"peerDependenciesMeta": {
|
|
64
|
+
"@sentry/node": {
|
|
65
|
+
"optional": true
|
|
66
|
+
},
|
|
67
|
+
"bullmq": {
|
|
68
|
+
"optional": true
|
|
69
|
+
},
|
|
70
|
+
"knex": {
|
|
71
|
+
"optional": true
|
|
72
|
+
},
|
|
73
|
+
"nodemailer": {
|
|
74
|
+
"optional": true
|
|
75
|
+
},
|
|
76
|
+
"redis": {
|
|
77
|
+
"optional": true
|
|
78
|
+
},
|
|
79
|
+
"sqlite3": {
|
|
80
|
+
"optional": true
|
|
81
|
+
}
|
|
60
82
|
}
|
|
61
83
|
}
|