create-backlist 7.0.1 → 7.3.1
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 +1 -10
- package/bin/index.js +242 -275
- package/package.json +3 -2
- package/src/ai-agent.js +171 -171
- package/src/analyzer.js +750 -495
- package/src/env-resolver.js +70 -0
- package/src/generators/dotnet.js +134 -133
- package/src/generators/java.js +248 -233
- package/src/generators/js.js +346 -0
- package/src/generators/nestjs.js +278 -0
- package/src/generators/node.js +404 -404
- package/src/generators/python.js +86 -104
- package/src/generators/template.js +22 -22
- package/src/project-detector.js +131 -0
- package/src/templates/dotnet/partials/Dockerfile.ejs +27 -0
- package/src/templates/dotnet/partials/docker-compose.yml.ejs +33 -0
- package/src/templates/java-spring/partials/Controller.java.ejs +3 -3
- package/src/templates/js-express/base/server.js +59 -0
- package/src/templates/js-express/partials/Dockerfile.ejs +12 -0
- package/src/templates/js-express/partials/auth.controller.js.ejs +66 -0
- package/src/templates/js-express/partials/auth.middleware.js.ejs +19 -0
- package/src/templates/js-express/partials/auth.routes.js.ejs +9 -0
- package/src/templates/js-express/partials/controller.js.ejs +53 -0
- package/src/templates/js-express/partials/db.js.ejs +19 -0
- package/src/templates/js-express/partials/docker-compose.yml.ejs +46 -0
- package/src/templates/js-express/partials/model.js.ejs +18 -0
- package/src/templates/js-express/partials/package.json.ejs +17 -0
- package/src/templates/js-express/partials/prisma.schema.ejs +21 -0
- package/src/templates/js-express/partials/routes.js.ejs +19 -0
- package/src/templates/js-express/partials/seeder.js.ejs +103 -0
- package/src/templates/js-express/partials/service.js.ejs +51 -0
- package/src/templates/js-express/partials/swagger.js.ejs +30 -0
- package/src/templates/js-express/partials/test.js.ejs +46 -0
- package/src/templates/nestjs/base/app.module.ts +9 -0
- package/src/templates/nestjs/base/main.ts +23 -0
- package/src/templates/nestjs/base/tsconfig.json +21 -0
- package/src/templates/nestjs/partials/auth.controller.ts.ejs +17 -0
- package/src/templates/nestjs/partials/auth.module.ts.ejs +17 -0
- package/src/templates/nestjs/partials/auth.service.ts.ejs +70 -0
- package/src/templates/nestjs/partials/controller.ts.ejs +34 -0
- package/src/templates/nestjs/partials/create-dto.ts.ejs +22 -0
- package/src/templates/nestjs/partials/jwt-guard.ts.ejs +24 -0
- package/src/templates/nestjs/partials/module.ts.ejs +10 -0
- package/src/templates/nestjs/partials/package.json.ejs +27 -0
- package/src/templates/nestjs/partials/prisma.service.ts.ejs +13 -0
- package/src/templates/nestjs/partials/schema.ts.ejs +19 -0
- package/src/templates/nestjs/partials/service.ts.ejs +67 -0
- package/src/templates/nestjs/partials/update-dto.ts.ejs +4 -0
- package/src/templates/node-ts-express/partials/HexController.ts.ejs +56 -56
- package/src/templates/node-ts-express/partials/HexRepository.ts.ejs +26 -26
- package/src/templates/node-ts-express/partials/HexService.ts.ejs +27 -27
- package/src/utils.js +11 -11
- /package/src/templates/{node-ts-express → dotnet}/partials/DbContext.cs.ejs +0 -0
- /package/src/templates/{node-ts-express → dotnet}/partials/Model.cs.ejs +0 -0
package/README.md
CHANGED
|
@@ -118,11 +118,7 @@ export const createUsers = async (req: Request, res: Response) => {
|
|
|
118
118
|
| Feature | Description |
|
|
119
119
|
| --- | --- |
|
|
120
120
|
| **🤖 AST-Powered Engine** | Uses advanced static analysis to detect endpoints dynamically. Superior to Regex because it understands code structure. |
|
|
121
|
-
| **🌐 Polyglot Support** | **One Tool, Four Stacks.**
|
|
122
|
-
|
|
123
|
-
<br>✅ **Node.js** (Production Ready)<br>
|
|
124
|
-
|
|
125
|
-
<br>🚀 **Python, Java, C#** (Beta Support) |
|
|
121
|
+
| **🌐 Polyglot Support** | **One Tool, Four Stacks.** ✅ Node.js (Production Ready), 🚀 Python, Java, C# (Beta Support) |
|
|
126
122
|
| **🐳 Auto-Dockerization** | Instantly generates optimized `Dockerfile` and `docker-compose.yml` for zero-config deployment. |
|
|
127
123
|
| **🧠 Active Context Analysis** | Smartly prioritizes scanning the file currently open in your VS Code editor to capture complex endpoints missed by global scans. |
|
|
128
124
|
| **⚡ Zero-Config Boilerplate** | No manual setup. It scaffolds folders, installs dependencies (`package.json`, `pom.xml`, `requirements.txt`), and starts the server. |
|
|
@@ -182,8 +178,3 @@ Give us a ⭐ on GitHub if this saved you time!
|
|
|
182
178
|
---
|
|
183
179
|
|
|
184
180
|
*Built with ❤️ for builders by [W.A.H. ISHAN](https://github.com/WAH-ISHAN).*
|
|
185
|
-
|
|
186
|
-
```
|
|
187
|
-
|
|
188
|
-
---
|
|
189
|
-
|