Event Planning Tips & Tricks

What is the Composability-First Design pattern? Also known as "Atomic-First Design," read along for an explanation and to learn more about how these design principles improve your development experience (DX).

Illustration of Atomic UI & FX Design

The Why

Building complex components is oftentimes difficult using traditional development & design approaches. In addition to the already many questions a developer has to answer: should I use Vue? React? Svelte, Solid, or Angular? How do I distribute it via a package manager, like npm? Over time, questions like these become exhausting to answer, while trying to find "the best tech stack."

It is interesting to note that this is not necessarily due to the complexity of the development tasks required but rather due to the sheer amount of moving pieces required to build & engineer truly composable libraries. You may have already asked yourself one or many of the following questions/scenarios:

  • Which code style should be followed?
  • Code formatting setup (e.g. Eslint, Prettier, etc.)
  • Create a custom, project-specific CI (e.g. GitHub Actions, Circle CI, Travis CI, etc.)
  • Automatic library changelog generations upon releases, based on git naming conventions
  • Distribution channels setup (e.g. package managers like npm & CDNs)
  • Create a documentation site/web presence for the library
  • Does your IDE help as much as it possibly could?

No matter which component or function library you are building, these concerns all have to be—and should be—addressed, one way or another.

What is a Composable / Atomic Library?

Have you ever needed to reuse one of your components from Project A in Project B? Or have you ever needed to access a project-specific function from Project B? How about a beautiful, working modal experience? Or calendar components?

In concept, you can characterize a "composable library" as a collection of components and/or functions that is broken down to its core, in order to be optimized for reusability. This allows anyone to require them (components and/or functions) into anyone's projects.

Think of Lodash for "functions," and minimal HTML for the "components."

How do I know if it's right for me?

When wanting to adapt the "Composability-First Design" pattern, you will want to ask the following questions to identify whether or not this design pattern is a fit for you:

  • Are you developing a UI component library or a function library? Or both?
  • How is the library styled, if styling is required at all?
    • Tailwind CSS, Windi CSS, Bootstrap, Tachyons? Or something else/custom?
    • In case styling is required, are "icons" utilized within the UI?
  • How is the library distributed across different code bases? npm and/or CDNs?
  • Is the library meant to be built for max compatibility?

Both components & functions should be designed with reusability (composability) in mind.

The How

describe with code examples from readmes

The Atomic Core

As you can see in the "Atomic Design" diagram above, there are two core atomic engines:

  1. The Atomic UI engine
  2. The Atomic FX engine

The Atomic UI engine, at its core, is made up of an instant atomic CSS engine, coupled with several UI techniques to ensure the most reusable and composable UI experience. To quote Adam Wathan, the creator of Tailwind CSS:

Maintaining a utility-first (atomic) CSS project turns out to be a lot easier than maintaining a large CSS codebase, simply because HTML is so much easier to maintain than CSS. Large companies like GitHub, Netflix, Heroku, Kickstarter, Twitch, Segment, and more are using this approach with great success.

Much has been written about atomic CSS engines, in particular, because CSS is "notoriously hard to scale" (Sarah Dayan of Algolia). If you like to hear about other experiences, check out the following resources: Some resources on the benefits of scaling via an atomic approach:

Maintainability Concerns

Maintainability concerns are a major reason & inspiration for a composable atomic UI/FX engine.

Work in progress

Up until the Stacks v1.0 launch, this post may be updated. If you have any questions or comments, please feel free to reach out to me on Twitter or via email.