create-nexgen 1.0.4 → 1.0.6
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 +38 -0
- package/package.json +62 -3
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<picture>
|
|
2
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/niyamulahsan/nexgen/main/.github/logo-dark.svg">
|
|
3
|
+
<img alt="nexgen" src="https://raw.githubusercontent.com/niyamulahsan/nexgen/main/.github/logo-light.svg" width="200">
|
|
4
|
+
</picture>
|
|
5
|
+
|
|
6
|
+
**nexgen** is a full-stack TypeScript framework built on [Hono](https://hono.dev), [Vue 3](https://vuejs.org), and [Drizzle ORM](https://orm.drizzle.team). It provides a modular architecture, Redis-backed services, real-time broadcasting, and Docker-based deployment out of the box.
|
|
7
|
+
|
|
8
|
+
[](https://niyamulahsan.github.io/nexgen)
|
|
9
|
+
|
|
10
|
+
## Quick Start
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm create nexgen@latest
|
|
14
|
+
cd my-app
|
|
15
|
+
cp .env.example .env
|
|
16
|
+
npm install
|
|
17
|
+
npm run maker db:schema
|
|
18
|
+
npm run maker db:seed
|
|
19
|
+
npm run maker dev
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Features
|
|
23
|
+
|
|
24
|
+
- **Modular architecture** — Self-contained modules with auto-discovered routes, jobs, models, and seeders
|
|
25
|
+
- **Type-safe API** — Hono + Zod + OpenAPI with auto-generated Scalar docs
|
|
26
|
+
- **Redis-backed services** — Cache, session, queue (BullMQ), and real-time (Socket.IO)
|
|
27
|
+
- **Dual database** — SQLite, MySQL, or PostgreSQL via Drizzle ORM
|
|
28
|
+
- **Vue 3 frontend** — Vite + Pinia + Vue Router with real-time Pulse integration
|
|
29
|
+
- **Docker deploy** — Two-layer Docker Compose with nginx-proxy, SSL, supervisor
|
|
30
|
+
- **Maker CLI** — Code generation, migrations, runtime management, and deploy orchestration
|
|
31
|
+
|
|
32
|
+
## Documentation
|
|
33
|
+
|
|
34
|
+
Full documentation at **[https://niyamulahsan.github.io/nexgen](https://niyamulahsan.github.io/nexgen)**
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
nexgen is open-sourced software licensed under the [MIT license](https://github.com/niyamulahsan/nexgen/blob/main/LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-nexgen",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Scaffold a new Nexgen project",
|
|
6
6
|
"bin": {
|
|
@@ -20,7 +20,66 @@
|
|
|
20
20
|
"keywords": [
|
|
21
21
|
"nexgen",
|
|
22
22
|
"scaffold",
|
|
23
|
-
"cli"
|
|
23
|
+
"cli",
|
|
24
|
+
"full-stack",
|
|
25
|
+
"hono",
|
|
26
|
+
"vue",
|
|
27
|
+
"drizzle"
|
|
24
28
|
],
|
|
25
|
-
"license": "MIT"
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/niyamulahsan/nexgen.git"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://nexgen.dev",
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/niyamulahsan/nexgen/issues"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@aws-sdk/client-s3": "^3.1045.0",
|
|
40
|
+
"@aws-sdk/s3-request-presigner": "^3.1045.0",
|
|
41
|
+
"@bull-board/api": "^7.1.5",
|
|
42
|
+
"@bull-board/hono": "^7.1.5",
|
|
43
|
+
"@hono/node-server": "^2.0.3",
|
|
44
|
+
"@hono/zod-openapi": "^1.4.0",
|
|
45
|
+
"@scalar/hono-api-reference": "^0.10.14",
|
|
46
|
+
"@socket.io/admin-ui": "^0.5.1",
|
|
47
|
+
"@socket.io/redis-adapter": "^8.3.0",
|
|
48
|
+
"@vitejs/plugin-vue": "^6.0.7",
|
|
49
|
+
"@vueuse/core": "^14.3.0",
|
|
50
|
+
"@vueuse/head": "^2.0.0",
|
|
51
|
+
"axios": "^1.16.0",
|
|
52
|
+
"bcryptjs": "^3.0.3",
|
|
53
|
+
"bootstrap": "^5.3.8",
|
|
54
|
+
"bootstrap-icons": "^1.13.1",
|
|
55
|
+
"bullmq": "^5.76.6",
|
|
56
|
+
"chalk": "^5.6.2",
|
|
57
|
+
"commander": "^14.0.3",
|
|
58
|
+
"dotenv": "^17.4.2",
|
|
59
|
+
"dotenv-expand": "^13.0.0",
|
|
60
|
+
"drizzle-orm": "^0.45.2",
|
|
61
|
+
"glob": "^13.0.6",
|
|
62
|
+
"hono": "^4.12.18",
|
|
63
|
+
"hono-rate-limiter": "^0.5.3",
|
|
64
|
+
"ioredis": "^5.10.1",
|
|
65
|
+
"lodash-es": "^4.18.1",
|
|
66
|
+
"luxon": "^3.7.2",
|
|
67
|
+
"maildev": "^2.2.1",
|
|
68
|
+
"mime-types": "^3.0.2",
|
|
69
|
+
"mysql2": "^3.22.3",
|
|
70
|
+
"node-cron": "^4.2.1",
|
|
71
|
+
"nodemailer": "^8.0.7",
|
|
72
|
+
"pinia": "^3.0.4",
|
|
73
|
+
"redis-commander": "^0.9.0",
|
|
74
|
+
"sass-embedded": "^1.99.0",
|
|
75
|
+
"socket.io": "^4.8.3",
|
|
76
|
+
"socket.io-client": "^4.8.3",
|
|
77
|
+
"stoker": "^2.0.1",
|
|
78
|
+
"vite": "^8.0.13",
|
|
79
|
+
"vue": "^3.5.34",
|
|
80
|
+
"vue-router": "^5.0.6",
|
|
81
|
+
"vue-select": "^4.0.0-beta.6",
|
|
82
|
+
"winston": "^3.19.0",
|
|
83
|
+
"zod": "^4.4.3"
|
|
84
|
+
}
|
|
26
85
|
}
|