Frontend application architecture
What is a good web application architecture
There are different theoretical definitions and justifications for this concept, but roughly speaking it is the following.
Let's say you are developing a project, already at the final stage. A customer comes to you and says something like: I want to add a shadow to all buttons, I want to change the UI library, we decided to support multiple languages, we decided to replace this module with another, we need to make more detailed adaptability for different resolutions, we decided to add themes, we are changing the provider of payment processing services, we have an increasing number of users / the site is slowing down / need to speed it up, need to increase the level of security of the site, we took a middle programmer, bring him up to speed quickly, and let him add functionality or fix the b
A good frontend application architecture allows you to accomplish all of this most efficiently with the least amount of effort.
OOP on the frontend
Many people coming from development in object-oriented languages try to use OOP concepts on the frontend and program with classes, inheritance, polymorphism and other things.
This is a mistake. The main computations on the front end are related to UI - displaying data, handling user interaction. Class systems and microservices are simply not needed on them. Of course, you can create a basic button, wrap it in two custom components and consider it inheritance, but you can't do it in code. That's why you have to learn to think in other categories - components, composable functions, js modules. And use your JavaScript power, not trying to stretch it on OOP.
At the same time, a good analogy of an object with a global ("static") and local ("object") state is a composable function. It can be used in certain situations.
Suitable architecture for Vue 3 web application
The most suitable architecture for a Vue 3 application is modular.
Initially, the application is divided into logical modules that are loosely related to each other. For example, for an online store, it can be a product catalog module, a module of a single product, a module of a personal cabinet / user account.
In addition, there is a shell module - what is sometimes called an app shell
. A template with a header, footer, side menu and main window. It is wise to put utilities and resources used throughout the application into this module - for example, api
, useI18n
, BaseButton
andstringHelpers
.
Each module has its own components
, composables
, assets
, utils
; perhaps api
, routes
, views
, layouts
.
Loose coupling allows each module to be developed fairly independently, which greatly increases the likelihood of project success.
Useful tips
Avoid addictions
If there is a possibility not to introduce a new dependency (not to plug in a new npm package) - don't do it. It may save you a bit of time, but a third-party library will sooner or later become obsolete, no longer supported, and may have a vulnerability. Besides, it increases the size of your bundle, which directly affects the performance of your application. Tree shaking is good in advertising, but it doesn't always work in reality.
If you need, for example, the debounce
function, don't hurry to plug it together with some library. Google its implementation and copy 15 lines of code and make your own function.
Use wrappers over components of UI libraries and third-party utilities
If you use components of some UI library, don't use them directly - make wrappers for them. For example, BaseButton
or BaseInput
. This will make styling the components much easier, and will also make it much easier to switch to another library, or replace them with your own components.
The same goes for utilities.
Regular refactoring
Do code refactoring from time to time, moving components and modules to where they should logically be, renaming them, and structuring and improving the code itself. This is good for both the code and your professional growth.
Use CSS3
Try to use pure CSS3 for adaptability. Do not be tied to columnar models of CSS and UI libraries, unless it is a "done and forgotten, let the customer continue to suffer with it" project.
Spend a couple of days to learn Flexbox and you will be able to layout on it faster and better than on any Tailwind.
Use modern standards and language features
For example, HTML5 semantic elements - aside, header, section, article, details, etc.
CSS3 - Flexbox and Grid, Container query
Document the project
Draw use-case and other diagrams, describe the main functionality of the project and important details of its implementation - this will at least raise your level as a software developer.
VitePress is a very handy tool for technical documentation.