1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
+++
title = "When Should You Use Hypermedia?"
description = """\
This essay by Carson Gross explores when to use hypermedia in web development, highlighting its advantages and \
trade-offs. Carson discusses scenarios where hypermedia is a good fit, such as text and image-heavy UIs, CRUD \
applications, and nested UIs with well-defined areas. He also addresses when hypermedia may not be ideal, including \
situations with frequent UI state updates, offline requirements, or dynamic interdependencies. Using a \
'Transitional' approach (as suggested by Rich Harris), Carson advocates for combining hypermedia with other \
strategies to optimize web application development, emphasizing its practical benefits and alignment with the web's \
architecture."""
date = 2022-10-23
updated = 2023-02-03
authors = ["Carson Gross"]
[taxonomies]
tag = ["posts"]
+++
> The trade-off, though, is that a uniform interface degrades efficiency, since information is transferred in a
> standardized form rather than one which is specific to an application's needs. The REST interface is designed to be
> efficient for large-grain hypermedia data transfer, optimizing for the common case of the Web, but resulting in an
> interface that is not optimal for other forms of architectural interaction.
_-Roy Fielding, <https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm#sec_5_1_5>_
We are obviously fans of hypermedia and think that it can address, at least in part, many of the problems that the web
development world is facing today:
* Hypermedia is often [significantly less complex](@/essays/a-real-world-react-to-htmx-port.md) than an SPA approach would
be for many problems
* Hypermedia allows your application API to be [much more aggressively refactored and optimized](@/essays/hateoas.md)
* Hypermedia takes pressure off adopting a particular server technology, since you do not have an extensive JavaScript
front-end code base
With [htmx](@/_index.md) and the additional UX possibilities that it gives you, we believe that many modern web applications can be built
using HTML and the hypermedia paradigm.
With that being said, as with all technical choices, there are tradeoffs associated with hypermedia. In this article
we will give you some ways to think about if hypermedia will be a good fit for an application or feature you are building.
## Transitional Applications & Hypermedia
Before we get into the details of when hypermedia is a good choice, we'd like to clarify that adopting hypermedia is not
an [either/or](https://en.wikipedia.org/wiki/Either/Or) decision when building a web application. Even the most Single-y
of Single Page Applications utilizes hypermedia after all: as a bootstrap mechanism, to start the application.
In his talk, [Have SPAs Ruined The Web](https://www.youtube.com/watch?v=860d8usGC0o), Rich Harris gives us the term
"Transitional" Applications, that is applications that _mix_ both hypermedia and non-hypermedia (SPA) concepts. We
have responded to Mr. Harris' talk [in more detail here](@/essays/a-response-to-rich-harris.md), but suffice to say we
violently agree with him that a pragmatic "Transitional" approach to web development is best: you should use the
right tool for the particular job you are working on.
Where we would likely disagree with Mr. Harris is where "the line" is between features that can be implemented
effectively in hypermedia and features that require a more sophisticated client-side approach. We feel that, with htmx,
hypermedia can go much, much further than many web developers today believe is possible. And, further, that, for many
applications, it can address many or all of their UX needs.
## Hypermedia: A Good Fit If...
### _...If your UI is mostly text & images_
In [The Mother Of All htmx Demos](@/essays/a-real-world-react-to-htmx-port.md), David Guillot of Contexte shows how replacing
React with htmx lead to a 67% reduction in the total codebase, along with numerous other eye-popping results.
As much as we would like to claim that every team moving from React to htmx would experience these results, the fact is that the
Contexte web application is *extremely amenable* to the hypermedia style.
What makes Contexte so perfect for hypermedia is that it is a media-oriented web application, showing articles consisting
of text and images for reading. It has a sophisticated filtering mechanism and other niceties, but the crux of the
application is displaying and categorizing articles. This is exactly the sort of thing that hypermedia was designed to
do, and this is why htmx and hypermedia worked so well for their application.
### _...If your UI is CRUD-y_
Another area where hypermedia has a long track-record of success is [CRUD](https://en.wikipedia.org/wiki/Create,_read,_update_and_delete)-y
web applications, in the [Ruby on Rails](https://rubyonrails.org/) style. If your main application mechanic is showing
forms and saving the forms into a database, hypermedia can work very well.
And, with htmx, it can also be [very smooth](@/examples/click-to-edit.md), and not just constrained
to the simple [list view/detail view](@/examples/edit-row.md) approach many server side applications take.
### _...If your UI is "nested", with updates mostly taking place within well-defined blocks_
One area where hypermedia can start to go a little wobbly is when you have UI dependencies that span structural
areas of the screen. A good example of this, and one that often comes up when discussing the hypermedia approach, is the issue
count number shown on the ["Issues" tab](https://github.com/bigskysoftware/htmx/issues) in GitHub. For a long time,
when you closed an issue on GitHub, the issue count on the tab did not update properly. GitHub, in general (although
not exclusively), uses a hypermedia-style application.
"Ah ha!", exclaims the SPA enthusiast, "See, even GitHub can't get this right!"
Well, GitHub has fixed the issue, but it does demonstrate a problem with the hypermedia approach: how do you update
disjoint parts of the UI cleanly? htmx offers [a few techniques for making this work](@/examples/update-other-content.md),
and Contexte, in their talk, discuss handling this situation very cleanly, using the event approach.
But, let us grant that this is an area where the hypermedia approach can get into trouble. To avoid this problem, one
potential strategy is to colocate dependent elements for a given resource within a given region or area on the screen in an
application.
As an example, consider a contact application whose detail screen for displaying and editing a contact has:
* An area for basic contact information
* An area for the contact's emails, and the count of those emails
* An area for the contact's phone numbers, and the count of those phone numbers
This UI could be laid out in the following manner:

In this scenario, each subsection can have its own dedicated hypermedia end-points:
* `/contacts/<id>/details` for the first name/last name/ etc. info
* `/contacts/<id>/emails` for the email section
* `/contacts/<id>/phonenumbers` for the phone numbers section
The trick here is that the email and phone counts are co-located on the screen with their collections, which allows you to
[target](@/attributes/hx-target.md) just that particular area for update when a modification is made to the respective
collections. All the data dependencies are co-located within a single area that can be updated via a single, simple
and obvious target, and that, further, don't interfere with one another when they are replaced.
Each area effectively forms a sort of server-side component, independent of the other areas on the screen, and they are
all nested within a broader contact detail user interface.
#### A Side Node: UI Driven Hypermedia APIs
Note that our hypermedia API (i.e. our end-points) in this case is _driven by the UI_: we have a particular UI layout
that we want to achieve, and we adapt our API to that. If the UI changed, we would have no qualms with completely changing
our API to satisfy the new requirements. This is a [unique aspect](@/essays/hateoas.md) of developing with
hypermedia, and we [discuss it in more detail here](@/essays/hypermedia-apis-vs-data-apis.md).
Of course, there may be UI requirements that do not allow for grouping of dependent element in this manner and, if
the techniques [mentioned above](@/examples/update-other-content.md) aren't satisfactory, then it may be
time to consider an alternative approach.
### _...If you need "deep links" & good first-render performance_
A final area where hypermedia outperforms other options is when you need "deep links", that is, links into your
application that go beyond the landing page, or when you need excellent first-render performance.
Since hypermedia is the natural language of the web, and since browsers are very good at rendering HTML given a URL,
using this approach is hard to beat for "traditional" web features such as these.
## Hypermedia: Not A Good Fit If...
### _...If your UI has many, dynamic interdependencies_
As we discussed above in the section on "nested" UIs, one area where hypermedia can have trouble is when there are
many UI dependencies spread across your UI and you can't afford to "update the whole UI". This is what Roy Fielding was
getting at in the quote at the top of this article: the web was designed for large-grain hypermedia data transfers, not
for lots of small data exchanges.
Particularly difficult for hypermedia to handle is when these dependencies are dynamic, that is, they depend on information
that cannot be determined at server-side render-time. A good example of this is something like a spreadsheet: a user can
enter an arbitrary function into a cell and introduce all sorts of dependencies on the screen, on the fly.
(Note, however, that for many applications, the ["editable row"](@/examples/edit-row.md) pattern is an
acceptable alternative to more general spreadsheet-like behavior, and this pattern does play well with hypermedia by
isolating edits within a bounded area.)
### _...If you require offline functionality_
The hypermedia distributed architecture leans heavily on the server side for rendering representations of resources. When
a server is down or unreachable, the architecture will obviously have trouble. It is possible to use Service Workers
to handle offline requests (although this is a complex option), and it is also easy to detect when a hypermedia
application is offline and show an offline message, as many thick-client application do.
But if your application requires full functionality in an offline environment, then the hypermedia approach is not
going to be an acceptable one.
### _...If your UI state is updated extremely frequently_
Another situation where hypermedia is not going to be a good approach is if your UI state is updated frequently. A good
example is an online game that needs to capture mouse movements. Putting a hypermedia network request in-between a mouse
move and a UI update will not work well, and you would be far better off writing your own client-side state management
for the game and syncing with a server using a different technology.
Of course, your game may also have a setting page and that setting page might be better done with hypermedia than
whatever solution you use for the core of your game. There is nothing wrong with mixing approaches, in the Transitional
style!
We should note, however, that it is typically easier to embed SPA components _within_ a larger hypermedia
architecture, than vice-versa. Isolated client-side components can communicate with a broader hypermedia application
via [events](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events), in the manner demonstrated
in the [drag-and-drop Sortable.js + htmx](@/examples/sortable.md) example.
### _...If you want integrated copy & paste components_
Recently we have seen the rise of "Copy & Paste" friendly components such as [ShadCN](https://ui.shadcn.com/).
These components are typically designed for a specific front end framework such as React, and choosing htmx means that
you can't use them.
There are front-end library neutral component libraries such as [lit](https://lit.dev/), but they are not as integrated
with htmx as ShadCN is with React.
### _...If your team is not on board_
A final reason to not choose hypermedia isn't technical, but rather sociological: currently, hypermedia simply isn't
in favor in web development. Many companies have adopted React as their standard library for building web applications.
Many developers and consultants have bet their careers on it. Many hiring managers have never heard of hypermedia, let
alone htmx, but put React on every job they post out of habit. It is certainly much easier to hire for!
While this is frustrating, it is a real phenomenon and should be borne in mind with humility. Although Contexte
was able to rewrite their application quickly and effectively in htmx, not all teams are as small, agile and
passionate, nor are all applications such slam dunks for the approach. It may be better to adopt hypermedia around
the edges, perhaps for internal tools first, to prove its value first, before taking a broader look at it.
## Conclusion
We are often asked: "OK, so what sorts of applications **wouldn't** htmx be good for". We prefer to think about
things on a feature-by-feature basis using the "Transitional" application concept, but it is useful to have some
broad, popular applications in mind when thinking about just how much might be done in hypermedia versus other
approaches.
To give an example of two famous applications that we think _could_ be implemented cleanly in hypermedia, consider
[Twitter](https://twitter.com) or [GMail](https://gmail.com). Both web applications are text-and-image heavy, with
coarse-grain updates and, thus, would be quite amenable to a hypermedia approach.
Two famous examples of web applications that would _not_ be amenable to a hypermedia approach are
[Google Sheets](https://www.google.com/sheets/about/) and [Google Maps](https://maps.google.com). Google Sheets can have
a large amounts of state within and interdependencies between many cells, making it untenable to issue a server request on every
cell update. Google Maps, on the other hand, responds rapidly to mouse movements and simply can't afford a server round trip for
every one of them. Both of these applications require a much more sophisticated client-side setup than what hypermedia
can provide.
Of course, the vast majority of web applications are nowhere near the scale and complexity of these examples. And almost
every web application, even Google Sheets or Google Maps, has parts where, potentially, the hypermedia approach would be
better: simpler, faster and cleaner.
Having hypermedia as a tool in your tool-chest will improve your ability to address engineering problems as a web
developer, even if it doesn't become your favorite hammer. There is a good [theoretical basis](@/essays/hateoas.md)
for the approach, [practical benefits for many applications](@/essays/a-real-world-react-to-htmx-port.md),
and it is "with the grain" of the web in a way that other approaches are not.
|