Maslow's Hierarchy of Needs In An Application

williamlawrence

Will Lawrence

Posted on January 20, 2020

Maslow's Hierarchy of Needs In An Application

Introduction

First, thanks for reading! This is my first post here on Dev.

If you aren’t familiar with Malsow’s Hierarch of Needs here's a brief explanation of the theory. There's a hierarchy of what a person needs, and they need to have all the things on one of the tiers before they can start fulfilling the needs on the next tier. Without having your basic physical needs satisfied, you can't have your higher-order needs fulfilled.

What do you need in application?

Let’s take that and apply it to applications. Let’s assume that you can only have one of the following before you can add another:

  • Performance
  • Documentation
  • Tests
  • Readability
  • Maintainability
  • Functionality
  • Security
  • Accessibility

I think that I would probably go in the following order:

  1. Functionality--the app should work, right?
  2. Readability--hopefully a person can read the code.
  3. Maintainability--the code should be easy to maintain. This falls in line with readability, but has more to do with organization.
  4. Security--the application should be secure and follow basic security principles.
  5. Accessibility--the application should be accessible to ALL users.
  6. Documentation--the code, as well as any user documentation, exists and is valid.
  7. Tests--the application has automated testing. This is my passion and it makes me so sad that this falls so low.
  8. Performance--the application is performant.

Your Turn

How would you rank them?

What would you add?

What is missing?

How did you decide your order?

💖 💪 🙅 🚩
williamlawrence
Will Lawrence

Posted on January 20, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related