Software Design Guide
Software Design Guide
Software Design Guide
problem, but that doesn’t become a huge mess of spaghetti code? Do you often end up in a
situation where you know what your software should eventually do, but you have no idea
how or where to start? I’ve been there many times, just like you, and I’ve written this 7-step
I’ve been developing software for as long as I can remember (but I have pretty bad memory,
so there’s that ☺). I started coding when I was a kid, mostly writing games and fun little
programs in BASIC. When I turned 18, I enrolled in Computer Science at the university, and
then continued to both a Master and PhD degree in Computer Science. I’ve been a Computer
Science teacher for almost 20 years, and I’ve launched several startups in which I created
When I design a new piece of software or add a new feature to an existing software
application, I first write down the idea in a structured way in a Software Design Document.
Below you’ll find the structure that I use for this, separated into 7 different sections. Beneath
each section name, I’ve added a bullet list of the main points to cover in that section. I also
added a few personal notes in each section (mostly some random thoughts and ramblings).
I hope you’ll find a few useful nuggets in this template, and that it helps you in improving your
1
Software Design Document Template
1. About
• What is the software application or feature?
• What are the main concepts that are involved and how are they related?
Notes
When you define what a software application or feature does, what concepts are involved
and how everything is related, I often follow a “zoom out and zoom in” approach. As a first
step, I try to think as broadly as possible about the software and what it would entail (“zoom
out”). The funny thing that I’ve noticed over the years is that as I’ve become a more
experienced software designer and developer, I’m spending more and more time in this
conceptual stage, and less time implementing it. The implementation almost becomes an
afterthought: it’s simply the final step of translating the concepts and relationships that I
wrote down into code that a computer can understand and run.
After zooming out, you need to zoom in again. What should we do first? Are there parts we
can delay building? What’s the low hanging fruit? How does the order of building things
impact the complexity of the work? Are there parts we should build first so we can test
2
2. User Interface
• What are the main user stories (happy flows + alternative flows)?
• If you’re adding a new feature to an existing software application, what impact does
the feature have on the overall structure of the interface? (are there big changes in the
Notes
You can also provide UI mockups or wireframes here as a part of the user stories to clarify
When I design software, I always must remind myself that I’m doing this for someone else,
not for me to pat myself on the back for finding such a nice design. What you design must
make sense to the user. Sometimes, that means you need to introduce an extra concept to
clarify how your system works. And sometimes the most generic solution is not the best
3. Technical Specification
• What technical details need developers to know to develop the software or new
feature?
• How will the software technically work? Are there particular algorithms or libraries
• What will be the overall design? Which classes are needed? What design patterns are
3
Notes
You can use UML to draw out the main classes that will be added and how they fit into the
When you design your classes and methods, consider design principles such as SOLID.
Design principles are the foundation of software design. Going through all of the principles is
out of scope for this document, but I have several videos on my YouTube channel where I talk
about them, so check those out if you’re not yet comfortable with the principles. On top of the
principles are the design patterns, which are standardized solutions to particular software
design problems. There are also quite a few videos about those on my channel.
This is also a good section to describe specific edge cases that you want the system to handle
correctly, for example what should happen in case of a network connection error.
• (new feature only) Are there any potential side-effects on other areas of the application
• (new feature only) How does the feature impact the security of the software? Is there
Notes
Everybody always talks about how important testing is. One of the main reasons people
mention is that it helps you find bugs and produce better, more reliable code. That’s part of it,
4
but there’s a way more important reason to make testing part of how you operate though: by
designing and writing code that is easy to test, you develop a tester’s mindset. A mindset
that every piece of code potentially breaks something. A mindset that takes edge cases into
account by default. If you adopt this mindset, you’ll start to automatically organize your code
such that edge cases are handled almost automatically. Design interfaces, classes and
methods in such a way that they nudge the users into following the happy flow.
For example, suppose you’re writing a function that retrieves users from your database with
a particular role. You could use a string argument to specify the name of the role. The problem
is that you open the possibility of calling that function with roles that don’t exist. And then
you’d have to write extra code to handle that edge case, as well as extra tests to make sure
you are actually handling it correctly. Another option is to use an Enum instead. Then, you’re
relying on the typing system to handle the edge case for you, saving you a lot of extra work.
Write your tests with the assumption that you’re going to change things during your
development process: don’t focus too much on reaching 100% test coverage in the beginning
but focus on getting a basic version of the feature done so you can evaluate whether this is
really what you or your users want. In fact, assume that every line of code you write you’re
going to throw away at some point: don’t get attached to the code you write.
5
5. Deployment
• Are there any architectural or DevOps changes needed (e.g. adding an extra
Notes
Especially if you create a tool that runs in the cloud, it’s useful to have some kind of staging
environment that closely mimics the production environment. In my company, we have four
• Develop: this is normally the version of the code running on your local development
machine.
• Test: this is a version of the application that runs in the cloud, similar to the production
environment.
• Acceptance (also called Staging): version of the application that runs in the cloud, as
close as possible to the production environment, often using a copy of the production
database.
My team and I use the Develop version on our local machines for actual feature development.
The Test version is used to make sure the feature we build works in the cloud (often, things
break because of issues with configuration, connection with other services, and so on). The
Acceptance version is only used to do final tests before releasing a new version. Here we
verify that existing users will still be able to log in and have access to their data.
6
6. Planning
• How much time will developing the software or feature cost?
• What are the steps and how much time does step take?
• What are the main risk factors and are there any alternative routes to take if you find
• What parts are absolutely required, and what parts can optionally be done at a later
Notes
Especially if you’re a beginning developer, it’s hard to estimate how much time developing a
piece of software takes. You will get better at this after doing it a couple of times. What helps
me is first figuring out what the main risk factors are. For example, if you want to add a
feature that allows users to integrate your app with Microsoft Teams, the main risk factor is
the process of building the actual integration code (which will probably reside partly in the
Teams App store), and not the user interface additions in your app to set it up. The more risk
factors you have in the software design, the more time you need to reserve for nasty surprises.
7
7. Broader Context
• What are limitations of the current design?
Notes
Whenever I design software, I always like to include a few “moonshot” ideas: “It would be
really cool if the software could also do X”. The reason this is useful is that this puts you in a
very open mindset that sometimes leads to new insights. Also, when you’re developing the
software, it’s possible that you get an epiphany that allows you to add one of these moonshot
8
Dear friend,
You may have noticed that I didn’t really talk much about design principles and patterns in this
guide. This is on purpose. The most important phase of coming up with a great design is
understanding the problem you’re trying to solve. This is a step that a lot of developers skip, but
Learning about and becoming comfortable with design patterns and principles is the next phase
though, so I promise that I’ll discuss them at length with you in the future. In the meantime, I hope
this guide gives you something to think about as we begin working together to help you become a
- Arjan
Where To Find Me
Website https://www.arjancodes.com
YouTube https://www.youtube.com/c/ArjanCodes
LinkedIn https://www.linkedin.com/company/arjancodes
Twitter https://twitter.com/arjancodes
Join my Discord here: https://discord.arjan.codes