Geek Culture

A new tech publication by Start it up (https://medium.com/swlh).

Follow publication

Member-only story

Best Practices

How to Structure Your Application Code (The Easy Way)

Code organization often determines application comprehension and long-term maintainability.

Nicklas Millard
Geek Culture
Published in
5 min readApr 26, 2021
Image by Nicklas Millard

You’ve noticed structuring code isn’t that easy. Starting from scratch often begs the question “where should this class go?”. Even the simple act of naming a solution, module, project, or what have you, can be mindboggling difficult.

It’s very likely you’ve already read tons of articles on this matter. You get different answers every time. This is great, as it broadens your repertoire of possible approaches, but, at the same time, it poses new questions. Also, having lots of options may even hinder your decisiveness.

“Enough, just show me the code structure!”

Great, you’re in a hurry, I get it. Here’s how I typically structure my code. This is useful for both enterprise-level applications as well as startups that want to hit the ground running, allowing for future flexibility without sacrificing agility.

Folders marked as bold.|src/ 
|- Core/
|---- Application project
|---- Domain project
|- Infrastructure/
|---- DataLayer project
|---- Other infrastructure projects
|- Presentation/
|---- WebApi
|---- Mobile App
|Tests/
|- Whatever test projects you have
|Scripts/
|- database.sql
|- pipeline scripts/templates (CD/CI)
|- ARM templates (Code as Infrastructure)
|Documentation/

There you have it. There’s really nothing more to it. But stick around if you want an explanation of each folder and the reasoning behind this structure.

📚 Show me the code (git repo)

Shameless plug.

Before we get into it…

Here’s a short youtube video that’ll go thru everything laid out in this article. I’ve just now decided to start a channel where I can upload videos of the subjects I’m writing about. If you’re more of a visual learner — I don’t know why you’d be reading this article then though.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Nicklas Millard
Nicklas Millard

Written by Nicklas Millard

I mostly write to "future me" sharing what I learn and my opinion on software development practices. youtube.com/@nmillard | open for contracts in Jan 2026.

Responses (1)

Write a response