Software:HTMX: Difference between revisions
Importwiki (talk | contribs) (import) |
Importwiki (talk | contribs) (import) |
||
Line 1: | Line 1: | ||
{{Infobox software | |||
| name = HTMX | |||
| logo = SVGmix-XRp12W-htmx.svg | |||
| author = Carson Gross | |||
| released = {{Start date and age|2020|11|24}}<ref>{{cite web |url = https://github.com/bigskysoftware/htmx/releases/tag/v1.0.0 |title=Release v1.0.0 - HTMX |website=GitHub}}</ref> | |||
| latest release version = 1.9.12<ref>{{cite web|url=https://github.com/bigskysoftware/htmx/releases/tag/v1.9.12|title=Release v1.9.12 - HTMX |website=GitHub}}</ref> | |||
| latest release date = {{Start date and age|2024|04|26|df=yes}} | |||
| programming language = [[JavaScript]] | |||
| size = 15.7 KB [[Minification (programming)|min]]+[[Software:Gzip|gzip]]<ref>{{Cite web |title=htmx.org v1.9.12 |url=https://unpkg.com/browse/htmx.org@1.9.12/dist/ |access-date=2024-04-30 |website=Unpkg |language=en}}</ref> | |||
| genre = [[JavaScript library]] | |||
| license = BSD 0-clause<ref name="license">{{cite web |title=htmx/LICENSE |url=https://github.com/bigskysoftware/htmx/blob/master/LICENSE |via=GitHub |work=HTMX |access-date=2024-04-30}}</ref> | |||
| website = {{URL|https://htmx.org/}} | |||
}} | |||
'''HTMX''' is an [[Open source|open-source]]<ref>{{Cite web |last=Desai |first=Milin |title=Council Post: Why Every Company Should Be Open-Source Aligned |url=https://www.forbes.com/sites/forbestechcouncil/2023/10/25/why-every-company-should-be-open-source-aligned/ |access-date=2024-05-19 |website=Forbes |language=en}}</ref> front-end [[JavaScript]] library created by Carson Gross as a new version of '''intercooler.js'''. It extends [[HTML]] with custom [[HTML attribute|attributes]] that [[Ajax (programming)|AJAX]] directly in HTML and with a [[Hypermedia|hypermedia]]-driven approach. This allows tasks that traditionally required writing JavaScript to be done completely with HTML. | |||
== History == | == History == | ||
HTMX has its roots in intercooler.js, | HTMX has its roots in intercooler.js, a frontend library created by Carson Gross in 2013. The library aimed to address the complexity associated with [[Ajax (programming)|AJAX]] (Asynchronous JavaScript and [[XML]]) by introducing a simplified approach using HTML attributes.<ref name=":0">{{Cite web |last=Melanson |first=Mike |date=2022-01-19 |title=Htmx: HTML Approach to Interactivity in a JavaScript World |url=https://thenewstack.io/htmx-html-approach-to-interactivity-in-a-javascript-world/ |access-date=2024-04-24 |website=The New Stack |language=en-US}}</ref> The intent was to create a framework that was aligned with Roy Fielding's original intent for [[REST]] (representational state transfer) - and specifically [[HATEOAS]] (hypermedia as the engine of application state). The problem is described in Fielding's blog post "REST APIs must be hypertext-driven" from October 2008.<ref>{{Cite web |last=Gross |first=Carson |title=Simple AJAX using HTML attributes |url=http://intercoolerjs.org/ |access-date=2024-04-24 |website=Intercooler.js |language=en}}</ref><ref>{{cite web |last=Fielding |first=Roy T. |date=20 Oct 2008 |title=REST APIs must be hypertext-driven » Untangled |url=https://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven}}</ref> | ||
The intent was to create a framework that was aligned with Roy Fielding's original intent for REST ( | |||
HTMX was created as an improved version of intercooler.js that did not rely on [[Software:JQuery|jQuery]] with version 1.0.0 being released in November 2020.<ref>{{Cite web |title=htmx ~ htmx 1.0.0 has been released! |url=https://htmx.org/posts/2020-11-24-htmx-1-0-0-is-released/ |access-date=2024-04-24 |website=htmx.org}}</ref> The release of HTMX was a significant milestone for the project, by offering a way to utilize AJAX, [[CSS]] transitions, [[WebSocket|WebSockets]], and Server-Sent Events directly in HTML using attributes.<ref>{{Cite web |title=htmx {{!}} Technology Radar |url=https://www.thoughtworks.com/en-us/radar/languages-and-frameworks/htmx |website=Thoughtworks |language=en-US}}</ref> | |||
In 2023, HTMX was added to the first cohort of the [[GitHub]] Accelerator program, a program the provides open source projects with funding and guidance from members of mature open source projects.<ref>{{Cite web |last=Sowles |first=Kara |date=2023-04-12 |title=GitHub Accelerator: our first cohort and what's next |url=https://github.blog/2023-04-12-github-accelerator-our-first-cohort-and-whats-next/ |access-date=2024-04-24 |website=The GitHub Blog |language=en-US}}</ref> | |||
In | |||
HTMX | == Design and functionality == | ||
< | HTMX enhances HTML elements for creating interactive web applications with a focus on simplicity and leveraging hypertext capabilities. It allows developers to easily add dynamic behavior to their markup using HTML attributes, reducing or even eliminating the need for extensive JavaScript code with large [[Software:Bundle (software distribution)|bundles]],<ref>{{Citation |last=Sheppard |first=Dennis |title=Leveling Up Your PWA |date=2017 |work=Beginning Progressive Web App Development |pages=243–259 |url=http://link.springer.com/10.1007/978-1-4842-3090-9_12 |access-date=2024-04-30 |place=Berkeley, CA |publisher=Apress |language=en |doi=10.1007/978-1-4842-3090-9_12 |isbn=978-1-4842-3089-3}}</ref> complex [[State management|state management]] or [[Hydration (web development)|hydration]].<ref>{{Cite web |title=A First Look at HTMX and How it Compares to React |url=https://www.builder.io/blog/htmx-vs-react |website=Builder.io |language=en}}</ref> HTMX can also update specific parts of a webpage without the need to reload the entire page (as would be the case with plain HTML+CSS), which might result in improved user experience and performance, since only a part of the data needs to be re-fetched from the server.<ref>{{Cite web |title=htmx ~ Documentation |url=https://htmx.org/docs/#swapping |access-date=2024-04-30 |website=htmx.org}}</ref> | ||
It | It also challenges the common approach of utilizing [[JSON]] as the standard payload for HTTP requests by replacing it with HTML.<ref name=":0" /> This is meant to solve the issues related to the performance and cognitive overhead of JSON [[Serialization|serialization]], deserialization, and subsequent use in the user interface, such as JavaScript and JSON's inability to accurately process numbers greater than 2<sup>53</sup> or distinguish floating-point numbers from [[Integer|integers]] and the complexity involved with alternatives to JSON-oriented REST, such as [[Software:GraphQL|GraphQL]] or [[Software:GRPC|GRPC]].<ref>{{Cite book |last=Kleppmann |first=Martin |title=Designing Data-Intensive Applications |date=2017-03-01 |publisher=O’Reilly Media |isbn=9781491903100 |edition=1st |location=1005 Gravenstein Highway North, Sebastopol, CA 95472, United States of America |at=JSON, XML, and Binary Variants |language=en-US |chapter=Formats for Encoding Data |type=epub}}</ref> Additionally, a potential advantage of HTMX and hypertext-oriented approach in general, is that data retrieved directly from the database does not need to either be in a JSON or JSON-compliant format, such as that used by many [[Document-oriented database|document databases]] or the [[Software:PostgreSQL|PostgreSQL]]'s JSON type, or be serialized by the backend only to be then deserialized by the frontend again.<ref>{{Cite book |last1=Shi |first1=Xuanhua |last2=Zhang |first2=Yipeng |last3=Huang |first3=Hong |last4=Hu |first4=Zhenyu |last5=Jin |first5=Hai |last6=Shen |first6=Huan |last7=Zhou |first7=Yongluan |last8=He |first8=Bingsheng |last9=Li |first9=Ruibo |last10=Zhou |first10=Keyong |chapter=Maxson: Reduce Duplicate Parsing Overhead on Raw Data |date=April 2020 |title=2020 IEEE 36th International Conference on Data Engineering (ICDE) |chapter-url=https://ieeexplore.ieee.org/document/9101499 |publisher=IEEE |pages=1621–1632 |doi=10.1109/ICDE48307.2020.00144 |isbn=978-1-7281-2903-7}}</ref> The reduced client-side computation also helps to shift the development focus towards the backend, which might result in better client-side performance, albeit at a cost of higher server load, and providing the developers with a simpler way to solve more problems which they would otherwise solve using client-side JavaScript in virtually any other programming language.<ref>{{Cite book |last=Eckert |first=Raphael |url=https://t73f.de/hochschule/thesis/2023_eckert.pdf |title=Erstellen eines einfach bedienbaren und einfach implementierbaren UI-Konzepts mit Go und htmx |date=2023-03-23 |publisher=Hochschule Heilbronn |location=Heilbronn |language=de-DE |trans-title=Creating an easy-to-use and easy-to-implement UI concept with Go and htmx}}</ref> | ||
JavaScript | The library's design philosophy revolves around a goal to "complete HTML as a [[Hypertext|hypertext]]."<ref name=":2">{{Cite web |last=Tyson |first=Matthew |date=2023-09-20 |title=Intro to HTMX: Dynamic HTML without JavaScript |url=https://www.infoworld.com/article/3706951/htmx-dynamic-html-without-the-javascript.html |access-date=2024-04-24 |website=InfoWorld |language=en}}</ref> By leveraging custom [[HTML attribute|HTML attributes]] prefixed with <code>hx-</code> to trigger [[Ajax (programming)|AJAX]] requests to fetch content to update parts of the [[Document Object Model|DOM]] with, HTMX enables developers to define dynamic behavior directly within their markup, reducing the need for extensive JavaScript code.<ref>{{cite web |date=26 October 2023 |title=Introduction to HTMX | refine |url=https://refine.dev/blog/what-is-htmx/}}</ref><ref>{{Cite web |last=Tyson |first=Matthew |date=2024-03-13 |title=Complexity bad: An interview with HTMX creator Carson Gross |url=https://www.infoworld.com/article/3713164/complexity-bad-an-interview-with-carson-gross.html |access-date=2024-04-24 |website=InfoWorld |language=en}}</ref> This approach offers a more accessible and intuitive way to build modern user interfaces while avoiding the complexities often associated with traditional JavaScript frameworks.<ref>{{Cite web |title=htmx ~ Essays |url=https://htmx.org/essays/ |access-date=2024-04-30 |website=htmx.org}}</ref> | ||
== | == Community and adoption == | ||
Since its inception as intercooler.js and its subsequent evolution into HTMX, the library has gained a significant following within the web development community.<ref>{{Cite web |title=@htmx_org |url=https://twitter.com/htmx_org |access-date=2024-05-19 |website=X (formerly Twitter)}}</ref><ref>{{Cite web |date=2024-04-17 |title=htmx.org |url=https://www.npmjs.com/package/htmx.org |access-date=2024-04-30 |website=npm |language=en}}</ref> HTMX has been viewed as a simpler and lighter weight alternative to full-blown JavaScript frameworks like [[Software:React (JavaScript library)|React]], [[Software:Vue.js|Vue.js]], and [[Software:Angular (web framework)|Angular]].<ref>{{Cite web |last=Tyson |first=Matthew |date=2024-04-01 |title=What's the best JavaScript framework? |url=https://www.infoworld.com/article/3713207/whats-the-best-javascript-framework.html |access-date=2024-05-19 |website=InfoWorld |language=en}}</ref><ref>{{Cite book |last=Dale |first=Kyran |title=Data Visualization with Python and JavaScript |date=2022-12-07 |publisher=O'Reilly Media |isbn=9781098111878 |edition=2nd |location=Sebastopol, CA |chapter=Chapter 4. Webdev 101}}</ref> As a result, it has gained a measure of popularity as an alternative to the approach used by most JavaScript frameworks for building dynamic web applications.<ref>{{Cite web |last=Letusheva |first=Valeria |date=2024-05-09 |title=Highlights from the Django Developer Survey 2024 |url=https://www.infoworld.com/article/3715395/highlights-from-the-django-developer-survey-2024.html |access-date=2024-05-19 |website=InfoWorld |language=en}}</ref> | |||
HTMX integrations have been developed for various full-stack/backend web frameworks, programming languages and templating engines, including [[Software:Node.js|Node.js]], [[Software:Django (web framework)|Django]], [[Software:Flask (web framework)|Flask]], [[Software:Adobe ColdFusion|Adobe ColdFusion]], [[Software:ASP.NET|ASP.NET]], [[Clojure]], and [[Software:Ruby on Rails|Ruby on Rails]].<ref>{{Cite web |title=htmx ~ Server-Side Examples |url=https://htmx.org/server-examples/ |access-date=2024-05-19 |website=htmx.org}}</ref> Such libraries are usually matter of nothing more than convenience since HTMX's portable and minimalist design allows it to be integrated with virtually any HTML templating engine.<ref name=":2" /> | |||
== References == | == References == | ||
{{reflist}} | {{reflist}} | ||
* | == External links == | ||
* {{Official website|https://htmx.org/}} | |||
* [https://github.com/bigskysoftware/htmx Github repository] | |||
{{Web frameworks}} | |||
{{Draft categories| | {{Draft categories| | ||
[[Category:Web development]] | [[:Category:Web development]] | ||
[[Category:Web frameworks]] | [[:Category:Web frameworks]] | ||
}} | }} | ||
{{Sourceattribution|HTMX}} | {{Sourceattribution|HTMX}} |
Latest revision as of 09:45, 28 July 2024
Original author(s) | Carson Gross |
---|---|
Initial release | November 24, 2020[1] |
Stable release | 1.9.12[2]
/ 26 April 2024 |
Written in | JavaScript |
Size | 15.7 KB min+gzip[3] |
Type | JavaScript library |
License | BSD 0-clause[4] |
Website | htmx |
HTMX is an open-source[5] front-end JavaScript library created by Carson Gross as a new version of intercooler.js. It extends HTML with custom attributes that AJAX directly in HTML and with a hypermedia-driven approach. This allows tasks that traditionally required writing JavaScript to be done completely with HTML.
History
HTMX has its roots in intercooler.js, a frontend library created by Carson Gross in 2013. The library aimed to address the complexity associated with AJAX (Asynchronous JavaScript and XML) by introducing a simplified approach using HTML attributes.[6] The intent was to create a framework that was aligned with Roy Fielding's original intent for REST (representational state transfer) - and specifically HATEOAS (hypermedia as the engine of application state). The problem is described in Fielding's blog post "REST APIs must be hypertext-driven" from October 2008.[7][8]
HTMX was created as an improved version of intercooler.js that did not rely on jQuery with version 1.0.0 being released in November 2020.[9] The release of HTMX was a significant milestone for the project, by offering a way to utilize AJAX, CSS transitions, WebSockets, and Server-Sent Events directly in HTML using attributes.[10]
In 2023, HTMX was added to the first cohort of the GitHub Accelerator program, a program the provides open source projects with funding and guidance from members of mature open source projects.[11]
Design and functionality
HTMX enhances HTML elements for creating interactive web applications with a focus on simplicity and leveraging hypertext capabilities. It allows developers to easily add dynamic behavior to their markup using HTML attributes, reducing or even eliminating the need for extensive JavaScript code with large bundles,[12] complex state management or hydration.[13] HTMX can also update specific parts of a webpage without the need to reload the entire page (as would be the case with plain HTML+CSS), which might result in improved user experience and performance, since only a part of the data needs to be re-fetched from the server.[14]
It also challenges the common approach of utilizing JSON as the standard payload for HTTP requests by replacing it with HTML.[6] This is meant to solve the issues related to the performance and cognitive overhead of JSON serialization, deserialization, and subsequent use in the user interface, such as JavaScript and JSON's inability to accurately process numbers greater than 253 or distinguish floating-point numbers from integers and the complexity involved with alternatives to JSON-oriented REST, such as GraphQL or GRPC.[15] Additionally, a potential advantage of HTMX and hypertext-oriented approach in general, is that data retrieved directly from the database does not need to either be in a JSON or JSON-compliant format, such as that used by many document databases or the PostgreSQL's JSON type, or be serialized by the backend only to be then deserialized by the frontend again.[16] The reduced client-side computation also helps to shift the development focus towards the backend, which might result in better client-side performance, albeit at a cost of higher server load, and providing the developers with a simpler way to solve more problems which they would otherwise solve using client-side JavaScript in virtually any other programming language.[17]
The library's design philosophy revolves around a goal to "complete HTML as a hypertext."[18] By leveraging custom HTML attributes prefixed with hx-
to trigger AJAX requests to fetch content to update parts of the DOM with, HTMX enables developers to define dynamic behavior directly within their markup, reducing the need for extensive JavaScript code.[19][20] This approach offers a more accessible and intuitive way to build modern user interfaces while avoiding the complexities often associated with traditional JavaScript frameworks.[21]
Community and adoption
Since its inception as intercooler.js and its subsequent evolution into HTMX, the library has gained a significant following within the web development community.[22][23] HTMX has been viewed as a simpler and lighter weight alternative to full-blown JavaScript frameworks like React, Vue.js, and Angular.[24][25] As a result, it has gained a measure of popularity as an alternative to the approach used by most JavaScript frameworks for building dynamic web applications.[26]
HTMX integrations have been developed for various full-stack/backend web frameworks, programming languages and templating engines, including Node.js, Django, Flask, Adobe ColdFusion, ASP.NET, Clojure, and Ruby on Rails.[27] Such libraries are usually matter of nothing more than convenience since HTMX's portable and minimalist design allows it to be integrated with virtually any HTML templating engine.[18]
References
- ↑ "Release v1.0.0 - HTMX". https://github.com/bigskysoftware/htmx/releases/tag/v1.0.0.
- ↑ "Release v1.9.12 - HTMX". https://github.com/bigskysoftware/htmx/releases/tag/v1.9.12.
- ↑ "htmx.org v1.9.12" (in en). https://unpkg.com/browse/htmx.org@1.9.12/dist/.
- ↑ "htmx/LICENSE". HTMX. https://github.com/bigskysoftware/htmx/blob/master/LICENSE.
- ↑ Desai, Milin. "Council Post: Why Every Company Should Be Open-Source Aligned" (in en). https://www.forbes.com/sites/forbestechcouncil/2023/10/25/why-every-company-should-be-open-source-aligned/.
- ↑ 6.0 6.1 Melanson, Mike (2022-01-19). "Htmx: HTML Approach to Interactivity in a JavaScript World" (in en-US). https://thenewstack.io/htmx-html-approach-to-interactivity-in-a-javascript-world/.
- ↑ Gross, Carson. "Simple AJAX using HTML attributes" (in en). http://intercoolerjs.org/.
- ↑ Fielding, Roy T. (20 Oct 2008). "REST APIs must be hypertext-driven » Untangled". https://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven.
- ↑ "htmx ~ htmx 1.0.0 has been released!". https://htmx.org/posts/2020-11-24-htmx-1-0-0-is-released/.
- ↑ "htmx | Technology Radar" (in en-US). https://www.thoughtworks.com/en-us/radar/languages-and-frameworks/htmx.
- ↑ Sowles, Kara (2023-04-12). "GitHub Accelerator: our first cohort and what's next" (in en-US). https://github.blog/2023-04-12-github-accelerator-our-first-cohort-and-whats-next/.
- ↑ Sheppard, Dennis (2017), "Leveling Up Your PWA" (in en), Beginning Progressive Web App Development (Berkeley, CA: Apress): pp. 243–259, doi:10.1007/978-1-4842-3090-9_12, ISBN 978-1-4842-3089-3, http://link.springer.com/10.1007/978-1-4842-3090-9_12, retrieved 2024-04-30
- ↑ "A First Look at HTMX and How it Compares to React" (in en). https://www.builder.io/blog/htmx-vs-react.
- ↑ "htmx ~ Documentation". https://htmx.org/docs/#swapping.
- ↑ Kleppmann, Martin (2017-03-01). "Formats for Encoding Data" (in en-US). Designing Data-Intensive Applications (epub) (1st ed.). 1005 Gravenstein Highway North, Sebastopol, CA 95472, United States of America: O’Reilly Media. JSON, XML, and Binary Variants. ISBN 9781491903100.
- ↑ Shi, Xuanhua; Zhang, Yipeng; Huang, Hong; Hu, Zhenyu; Jin, Hai; Shen, Huan; Zhou, Yongluan; He, Bingsheng et al. (April 2020). "Maxson: Reduce Duplicate Parsing Overhead on Raw Data". 2020 IEEE 36th International Conference on Data Engineering (ICDE). IEEE. pp. 1621–1632. doi:10.1109/ICDE48307.2020.00144. ISBN 978-1-7281-2903-7. https://ieeexplore.ieee.org/document/9101499.
- ↑ Eckert, Raphael (2023-03-23) (in de-DE). Erstellen eines einfach bedienbaren und einfach implementierbaren UI-Konzepts mit Go und htmx. Heilbronn: Hochschule Heilbronn. https://t73f.de/hochschule/thesis/2023_eckert.pdf.
- ↑ 18.0 18.1 Tyson, Matthew (2023-09-20). "Intro to HTMX: Dynamic HTML without JavaScript" (in en). https://www.infoworld.com/article/3706951/htmx-dynamic-html-without-the-javascript.html.
- ↑ "Introduction to HTMX | refine". 26 October 2023. https://refine.dev/blog/what-is-htmx/.
- ↑ Tyson, Matthew (2024-03-13). "Complexity bad: An interview with HTMX creator Carson Gross" (in en). https://www.infoworld.com/article/3713164/complexity-bad-an-interview-with-carson-gross.html.
- ↑ "htmx ~ Essays". https://htmx.org/essays/.
- ↑ "@htmx_org". https://twitter.com/htmx_org.
- ↑ "htmx.org" (in en). 2024-04-17. https://www.npmjs.com/package/htmx.org.
- ↑ Tyson, Matthew (2024-04-01). "What's the best JavaScript framework?" (in en). https://www.infoworld.com/article/3713207/whats-the-best-javascript-framework.html.
- ↑ Dale, Kyran (2022-12-07). "Chapter 4. Webdev 101". Data Visualization with Python and JavaScript (2nd ed.). Sebastopol, CA: O'Reilly Media. ISBN 9781098111878.
- ↑ Letusheva, Valeria (2024-05-09). "Highlights from the Django Developer Survey 2024" (in en). https://www.infoworld.com/article/3715395/highlights-from-the-django-developer-survey-2024.html.
- ↑ "htmx ~ Server-Side Examples". https://htmx.org/server-examples/.
External links
Original source: https://en.wikipedia.org/wiki/HTMX.
Read more |