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.
Files changed (46) hide show
  1. package/README.md +20 -0
  2. package/package.json +29 -7
  3. package/coverage/clover.xml +0 -1356
  4. package/coverage/coverage-final.json +0 -30
  5. package/coverage/lcov-report/base.css +0 -224
  6. package/coverage/lcov-report/block-navigation.js +0 -87
  7. package/coverage/lcov-report/favicon.png +0 -0
  8. package/coverage/lcov-report/fullstx/index.html +0 -146
  9. package/coverage/lcov-report/fullstx/index.js.html +0 -379
  10. package/coverage/lcov-report/fullstx/lib/application.js.html +0 -1840
  11. package/coverage/lcov-report/fullstx/lib/browser-sync.js.html +0 -199
  12. package/coverage/lcov-report/fullstx/lib/database.js.html +0 -535
  13. package/coverage/lcov-report/fullstx/lib/errors.js.html +0 -154
  14. package/coverage/lcov-report/fullstx/lib/features/hooks.js.html +0 -151
  15. package/coverage/lcov-report/fullstx/lib/features/index.html +0 -176
  16. package/coverage/lcov-report/fullstx/lib/features/jwt.js.html +0 -214
  17. package/coverage/lcov-report/fullstx/lib/features/plugins.js.html +0 -172
  18. package/coverage/lcov-report/fullstx/lib/features/routing.js.html +0 -211
  19. package/coverage/lcov-report/fullstx/lib/features/utils.js.html +0 -1216
  20. package/coverage/lcov-report/fullstx/lib/index.html +0 -236
  21. package/coverage/lcov-report/fullstx/lib/middlewares/apiKey.js.html +0 -127
  22. package/coverage/lcov-report/fullstx/lib/middlewares/authorize.js.html +0 -115
  23. package/coverage/lcov-report/fullstx/lib/middlewares/basicAuth.js.html +0 -148
  24. package/coverage/lcov-report/fullstx/lib/middlewares/csp.js.html +0 -124
  25. package/coverage/lcov-report/fullstx/lib/middlewares/csrf.js.html +0 -178
  26. package/coverage/lcov-report/fullstx/lib/middlewares/htmx.js.html +0 -157
  27. package/coverage/lcov-report/fullstx/lib/middlewares/i18n.js.html +0 -175
  28. package/coverage/lcov-report/fullstx/lib/middlewares/index.html +0 -281
  29. package/coverage/lcov-report/fullstx/lib/middlewares/rateLimit.js.html +0 -169
  30. package/coverage/lcov-report/fullstx/lib/middlewares/redisCache.js.html +0 -154
  31. package/coverage/lcov-report/fullstx/lib/middlewares/requirePermission.js.html +0 -118
  32. package/coverage/lcov-report/fullstx/lib/middlewares/routeLocalization.js.html +0 -118
  33. package/coverage/lcov-report/fullstx/lib/middlewares/session.js.html +0 -133
  34. package/coverage/lcov-report/fullstx/lib/middlewares.js.html +0 -340
  35. package/coverage/lcov-report/fullstx/lib/radix-router.js.html +0 -418
  36. package/coverage/lcov-report/fullstx/lib/request.js.html +0 -328
  37. package/coverage/lcov-report/fullstx/lib/response.js.html +0 -610
  38. package/coverage/lcov-report/fullstx/lib/websocket.js.html +0 -166
  39. package/coverage/lcov-report/fullstx/router.js.html +0 -226
  40. package/coverage/lcov-report/fullstx/server.js.html +0 -664
  41. package/coverage/lcov-report/index.html +0 -161
  42. package/coverage/lcov-report/prettify.css +0 -1
  43. package/coverage/lcov-report/prettify.js +0 -2
  44. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  45. package/coverage/lcov-report/sorter.js +0 -210
  46. 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.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
  }