Books Every Software Developer Should Read

I try to read at least one book per month. Reading is a nice way to spend the time when you’re on a plane, a train or a bus. It is a good example of the habit when in doubt, do something—when you have some time over, try spending it doing something useful.

There are a lot of good books on software development, but every now and again you come across a book that gives you a completely new perspective on how development should be done. Here is a list of books that I think every software developer should read, in no particular order.

  • Domain-Driven Design: Tackling Complexity in the Heart of Software by Eric Evans
  • This is the book that coined the term domain-driven design as an approach to modeling the problem domain in a way understandable to domain experts, using the same terms all the way from verbal discussions to source code. Evans’ book is the reference on the theory of DDD. If you want to know what a bounded context is, or what are the transactional properties of an aggregage, this is the book to read.

  • Implementing Domain-Driven Design by Vaughn Vernon
  • If Evans’ book explains the theory of domain-driven design, this book explains the practice, and shows how to implement all the elements in DDD under different circumstances. This book also explains domain events in some detail, something that is mostly missing from Evans’ original book. Includes a lot of sample code, nicely interwoven with discussions of why the code is written the way it is.

  • Specification by Example: How Successful Teams Deliver the Right Software by Gojko Adzic
  • The author introduces the term specification by example for a process that subsumes acceptance test-driven development and behavior-driven development as a way to specify requirements using concrete executable examples of how the system should behave, with a tool such as FitNesse. Done right, this also provides live documentation that is kept up to date since it is constantly being executed.

  • Release It!: Design and Deploy Production-Ready Software by Michael T. Nygard
  • This is the book to turn to for tips on building robust systems that can be operated under real-life conditions. The author describes a number of patterns and anti-patterns for stability and capacity, and also devotes several chapters to practical operations. If you want to learn more about the circuit breaker pattern, for example, this is the book to read.

  • Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation by Jez Humble and David Farley
  • This book explains how to set up a delivery pipeline that lowers stress in the development team by making the release of a new version of a system a non-event, using automation and automated tests to guarantee quality in the system being delivered. The book includes a chapter on version control where the authors explain the benefits of developing on the mainline and avoiding branching as much as possible.

RealLifeDeveloper

Published by

RealLifeDeveloper

I'm a software developer with 20+ years of experience who likes to work in agile teams using Specification by Example, Domain-Driven Design, Continuous Delivery and lots of automation.

2 thoughts on “Books Every Software Developer Should Read”

  1. To do something instead of doubting is also the essential key to get out of a state called analysis paralysis. I.e. it might be necessary to make the customer focus on their needs by building a prototype in order to make them recognise the needs for qulifying users, user-stories and acceptance criterias. Just do it.

  2. Hey,

    Thanks for putting together this post on books every software developer should read.It is a great read. I particularly find your thoughts about continuous delivery really interesting.
    Keep up these insightful posts.

    Cheers!

Leave a Reply

Your email address will not be published. Required fields are marked *