-
-
Notifications
You must be signed in to change notification settings - Fork 8k
Closed
Labels
Description
[ ] Regression
[ ] Bug report
[X] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit support request here, instead post your question on Stack Overflow.
I have big e-commerce apps, i planning move previous codebase from express (Typescript) to NestJS.
After reading documentation and try create nestjs project, I'm confused with project structure. In my opinion generated project structure not scalable, it strange when large codebase have project structure like that.
Currently on my backend have Controller, Model, Event, Middleware, Validator, interface, static file server (subdomain), websocket, here my current project structure
- src
- app
- controller
- model
- middleware
- validator
- event
- config
- server.ts
- route.ts
- database.ts
- ...
- routes
- sub
- static.ts
- store.ts
- product.ts
- ...
- lib
- main.ts
I'm not angular developer so i dont know how to manage project structure like that
How i for best project structure on awesome nestjs framework ?