Skip to main content

Questions tagged [architectural-patterns]

An architectural pattern is a general reusable solution related to the high level structure of software systems. For reusable solutions having a more specific scope (e.g. individual classes/components and their interactions), prefer the tag 'design-patterns'.

2 votes
3 answers
327 views

I'm refactoring a express backend and dividing everything into controller, service and repository. I find that using: import * as UserService from "./userService"; let {user} = await ...
Luca de Andrade's user avatar