@kabyeon/nexusjs 0.6.6 → 0.6.7

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 CHANGED
@@ -82,17 +82,23 @@ v0.4 release notes.
82
82
  ## Install
83
83
 
84
84
  ```bash
85
- bunx create-nexus my-app # scaffold a new project
85
+ # Scaffold a new project (requires Node.js ≥ 22 or Bun ≥ 1.3)
86
+ npx @kabyeon/nexusjs new my-app
86
87
  cd my-app
87
88
  bun install
88
89
  bun run dev
89
90
  ```
90
91
 
91
- Or install it in an existing project:
92
+ Or initialize NexusJS in an existing project:
92
93
 
93
94
  ```bash
94
95
  bun add @kabyeon/nexusjs reflect-metadata zod hono
95
- # Add the modules you need:
96
+ npx @kabyeon/nexusjs init
97
+ ```
98
+
99
+ Add the modules you need:
100
+
101
+ ```bash
96
102
  bun add @kabyeon/nexusjs/drizzle # the default ORM
97
103
  bun add @kabyeon/nexusjs/auth # authentication
98
104
  bun add @kabyeon/nexusjs/queue # background jobs
@@ -101,9 +107,7 @@ bun add @kabyeon/nexusjs/openapi # OpenAPI docs
101
107
  ```
102
108
 
103
109
  Every module is its own bundle entry point — install only what you
104
- use. The CLI (`nx`) is included with `@kabyeon/nexusjs`:
105
-
106
- ```
110
+ use. The CLI (`nx`) is included with `@kabyeon/nexusjs`.
107
111
 
108
112
  ---
109
113
 
@@ -813,10 +817,10 @@ v1.0, only major bumps will.
813
817
  - **v0.2** (2026-05-15) — `@kabyeon/nexusjs/auth`, `@kabyeon/nexusjs/queue`, `@kabyeon/nexusjs/schedule`, `@kabyeon/nexusjs/events`, `@kabyeon/nexusjs/session`, full `nx` CLI.
814
818
  - **v0.3** (2026-06-21) — production basics, cross-cutting features, `@kabyeon/nexusjs/drizzle` as the default ORM.
815
819
  - **v0.4** (2026-06-22) — observability + DX: `@kabyeon/nexusjs/openapi`, `@kabyeon/nexusjs/upload`, `@kabyeon/nexusjs/sse`, `@kabyeon/nexusjs/tracing`, `@kabyeon/nexusjs/metrics`, request-scoped DI in core.
816
- - **v0.5** (2026-06-23) — realtime + crypto + i18n + redis: `@kabyeon/nexusjs/ws`, `@kabyeon/nexusjs/crypto`, `@kabyeon/nexusjs/i18n`, `@kabyeon/nexusjs/redis`.
817
- - **v0.6** (2026-06-24) — gRPC + tooling: `@kabyeon/nexusjs/grpc` (reflection-based server + typed client) and a publishable `dist/` pipeline (`bin` field, `dist/src/*` flatten).
818
- - **v0.6.1** (2026-06-25) — patch: `nexus` → `@kabyeon/nexusjs` rename across all sources (191 files), `bin` field fix, `dist/src/*` flatten, docs in sync with the published name. No new features.
819
- - **v0.6.3** (2026-06-26) — view engine extracted to `@kabyeon/nexusjs/view`, Eta adapter, file-based view paths, auto-detection by extension.
820
+ - **v0.5** (2026-06-22) — realtime + crypto + i18n + redis: `@kabyeon/nexusjs/ws`, `@kabyeon/nexusjs/crypto`, `@kabyeon/nexusjs/i18n`, `@kabyeon/nexusjs/redis`.
821
+ - **v0.6** (2026-06-22) — gRPC + tooling: `@kabyeon/nexusjs/grpc` (reflection-based server + typed client) and a publishable `dist/` pipeline (`bin` field, `dist/src/*` flatten).
822
+ - **v0.6.1** (2026-06-22) — patch: `nexus` → `@kabyeon/nexusjs` rename across all sources (191 files), `bin` field fix, `dist/src/*` flatten, docs in sync with the published name. No new features.
823
+ - **v0.6.3** (2026-06-22) — view engine extracted to `@kabyeon/nexusjs/view`, Eta adapter, file-based view paths, auto-detection by extension.
820
824
  - **v0.6.4** (2026-06-22) — default view engine to Rendu, CLI view options include eta, Application auto-loads viewPaths from nx.config.ts, static file path fix, scaffold deduplication.
821
825
  - **v0.6.6** (2026-06-22) — env-aware config, `nx db:generate`, built-in `sessionMiddleware()`, scaffold generates `.env`/`.env.local`/`.gitignore`, drizzle model import fix, `make:crud` repository fix.
822
826
 
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kabyeon/nexusjs",
3
- "version": "0.6.6",
3
+ "version": "0.6.7",
4
4
  "description": "Bun Native Fullstack Framework - NestJS structure + Adonis productivity + Hono edge performance",
5
5
  "type": "module",
6
6
  "main": "./index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kabyeon/nexusjs",
3
- "version": "0.6.6",
3
+ "version": "0.6.7",
4
4
  "description": "Bun Native Fullstack Framework - NestJS structure + Adonis productivity + Hono edge performance",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",