htmx Has a Free API That Replaces React for 90% of Web Apps
javascript
dev.to
htmx lets you build modern, interactive web apps using HTML attributes instead of JavaScript frameworks. Its API surface is tiny but incredibly powerful. Core: AJAX via HTML Attributes hx-get="/api/data" hx-target="#results" hx-swap="innerHTML"> Load Data id="results"> hx-post="/api/items" hx-target="#item-list" hx-swap="afterbegin"> name="title" placeholder="New item"> type="submit">Add hx-delete="/api/items/42" hx-confirm="Are you sure?" hx-target="closest tr"