DEV Community

Cover image for If there was a such thing as a perfect web application - how would you describe it?
Kaleb M
Kaleb M

Posted on

If there was a such thing as a perfect web application - how would you describe it?

Hi everyone,

Lately I've had an idea of just what makes a "perfect" web application and wanted to put some of that idea up for discussion with the community!

Below I've outlined a few things that I believe would be part of the "perfect" web app. What do you think?!

The Perfect Web Application

Up-to-date Documentation

One of the biggest challenges with documenting software projects is change. The architecture continually changes with new features requirements or bug fixes. Code structures have to be reconstructed because of changes in how new tickets are implemented. We've all been there - pointing someone to the docs with the "they might not be up to date, but the general idea is the same".

I believe that a priority for documentation using the 80/20 rule (documenting the important things like high level architecture and code patterns used in the app) can go a long way in productive team discussions and implementation decisions.

Context for big architecture decisions

Trying to remember why a feature was implemented in a specific way becomes more difficult as more time passes every single day. It's faster and easier to collaborate in person than through ticket comments and slack messages, as the effectiveness of communication in person drastically increases.

If your team has a wonderful collaborative environment where there are many "swing around" meetings, that's great! The discussion results should be what's added as a summary to various tickets or documentation somewhere to keep track of why decisions were made.

This helps with debugging bugs later or remember why decisions were made when they need to be revisited!

Code standards and on-boarding guides

The way new devs are on-boarded makes a huge impact on their productivity and the productivity of the team. Guides on where to start with learning the architecture, where to request items for their desk, and general company how-to links help them get set up and integrate into the new work flow faster. The reason we're hiring new developers is to increase capacity on the team, the faster they ramp up, the better off we are as a team!

Consistent Design Across the App

Having designers on a project that are keeping components, spacing, and colors consistent across the app (especially when multiple teams are working on the same platform) makes users experience stronger.

Design systems and guidelines (like Material Design) can really help the design of the "perfect" app be consistent :).

User Flow

Extra clicks for common tasks across an app that you use on a daily bases adds up. Not only does it add up in time, but man is it irritating!

Creating a user flow with experts in user experiences keeps users happy. Users might be upset for a few hours when the app has downtime, but they will definitely be annoyed every single day if the user flow makes zero sense.

We must crush the beetles of life and user flow :D

Responsive Design

In the modern web age, people are using devices in all different sizes to access applications. The "perfect" web application handles this flawlessly, keeping user flows and design pristine.

We must continue pushing this!

Sound Architecture

As the natural life-cycles of a software project take their course, the architecture should be updated, upgraded, and adapted to make change easier.

Micro-services has helped SO much in this regard, so in most cases, we should find ways to modularize and separate concerns so various features can be changed without affecting other parts of the system.

Performance

The first line of defense against lackadaisical performance? Performance budgets.

Follow this up with performance testing, lighthouse audits, and standards around the requirements for our app.

Like functions in JS, performance should be a first class citizen in our lifecycle and design.

Our app should be scalable, reliable, and maintainable throughout it's various life stages.

Monitoring

Monitoring should be in place to easily determine if the performance and services are working as needed for the users. An easy to load dashboard and alert system should be set up to help us do our Ops job easier.

Logging

In addition to monitoring, client side and server side warnings, errors, and requests should be logged. Data changes? Logged. Any action in the system? Probably logged (depending on security requirements and sensitivity of data).

Not only does this help from the security perspective, but debugging a prod issue when you can look at legible logs SAVES SO MUCH TIME!

Code

Strict Linting / Formatting for consistency

Stylistic decisions and formatting should be handled by the team and implemented in linting rules. This keeps the code consistent and reduces arguments in merge requests over things that can be opinions based on style.

By documenting and adding linting rules for these types of issues, we can make it easier for new teammates, keep throughput of code reviews high, and have a consistent code base together as a team!

Consistent Patterns for Common Features (like data loading)

When developing features that are similar, for example modals or data loading, developers can have wildly different ideas or patterns on implementing them.

I believe that code should have personalization and artistic expression to an extent, but debugging and throughput when code bases use consistent patterns (file names, folder structure, abstractions, etc) is faster. It also helps new developers joining the team begin making contributions sooner rather than later.

Updated dependencies

Dependencies should be regularly checked and upgraded to keep software up to date, remove security concerns, and potentially increase performance through library updates (like React Fiber).

Developer Experience

Scripts for starting the application, testing it, and reloading changes should all be handled without having to memorize random commands. This is where npm scripts come in handy :).

Testing

Features should be tested to ensure confidence in the code and confidence it doesn't break with changes. Refactoring should be a fun experience! Here are three types of tests I find important:

  • 100% unit test coverage for business logic
  • 100% UI Integration tests (like React Testing Library)
  • E2E Testing for Major Features

I'd love to hear different opinions based on different experiences in the comments - what's the perfect web app look like to you?

Top comments (3)

Collapse
 
cristinaruth profile image
Cristina Ruth

I love this list and it would be so amazing if such a perfect app existed. Unfortunately, I don’t think most companies would ever have the resources to have such a perfect app though. Each one takes time, effort and investment of money and people. And if they’re spending time on these, then it’s time not spent on something else.

Collapse
 
avatarkaleb profile image
Kaleb M • Edited

That's so true! It is interesting that company's see it this way in my humble opinion, because bugs cost so much money to fix compared to catching them early and some of the "perfect" parts mentioned would actually help developers be more productive in the long run.

We live in such a fast world with high expectations that priorities are made for devs by people not on the team :D

Thank you for commenting and reading!

Collapse
 
avatarkaleb profile image
Kaleb M

Thank you for reading!

I agree with the items you added will try to add them to the list when time allows!

The points mentioned about the artistic expression being expressed through consistent patterns really has my brain turning this morning, as someone who can barely draw stick figures, it makes a lot of sense - especially when I reminisce to visiting the Van Gogh museum and the patterns that were part of his work.