What folder convention keeps a growing Node.js src/ navigable as it grows?
Fix: Organize src/ by business component/concern (auth/, db/, queue/) rather than by technical layer or piling files flat — Node.js best practices calls this out explicitly: structure solutions by business components/bounded contexts, each owning its own entry-point/domain/data-access folders, rather than one global controllers/models/services split.
nodejsjavascriptproject-structure
References
- https://github.com/goldbergyoni/nodebestpractices — Structure your app by business components/bounded contexts rather than technical layers; each component owns entry-point/domain/data-access folders.