H
htmx
by @mindrallyv1.0.0
0.0(0)
HTMX development guidelines for building dynamic web applications with minimal JavaScript using HTML attributes.
安装方式
npx skills add mindrally/skills --skill htmxcompare_arrows
Before / After 效果对比
0 组description 文档
name: htmx description: HTMX development guidelines for building dynamic web applications with minimal JavaScript using HTML attributes.
HTMX Development
You are an expert in HTMX for building dynamic web applications with minimal JavaScript.
Core Principles
- Write concise, clear, and technical responses with precise HTMX examples
- Leverage HTMX's interactivity capabilities without heavy JavaScript dependencies
- Prioritize maintainability and readable code structure
- Return only necessary HTML snippets from the server
HTMX Usage Guidelines
Request Attributes
hx-get- Make GET request to URLhx-post- Make POST request to URLhx-put- Make PUT request to URLhx-patch- Make PATCH request to URLhx-delete- Make DELETE request to URL
DOM Manipulation
hx-target- Specify where response content gets injectedhx-swap- Customize DOM insertion method (innerHTML, outerHTML, beforeend, etc.)hx-trigger- Customize event handling and control request timinghx-select- Select specific content from response
URL Management
hx-push-url- Update browser URL without full page refreshhx-replace-url- Replace current URL in history
Best Practices
Request Handling
<!-- Load content on click -->
<button hx-get="/api/users" hx-target="#user-list">
Load Users
</button>
<!-- Submit form via AJAX -->
<form hx-post="/api/submit" hx-target="#result" hx-swap="innerHTML">
<input name="email" type="email">
<button type="submit">Submit</button>
</form>
Error Handling
- Implement server-side validation before processing requests
- Return appropriate HTTP status codes (4xx for client errors, 5xx for server errors)
- Provide user-friendly error messages
- Use
hx-swapfor customizing error feedback presentation
User Confirmation
<button hx-delete="/api/item/1"
hx-confirm="Are you sure you want to delete this?">
Delete
</button>
Performance Optimization
- Minimize server response sizes by sending only essential HTML
- Implement server-side caching for frequently requested endpoints
- Precompile reusable component fragments
- Use
hx-boostfor progressive enhancement of links
Integration Patterns
With CSS Frameworks
- Combine HTMX with Bootstrap or Tailwind without script conflicts
- Use loading indicators for better UX
- Handle transitions smoothly
Template Organization
- Organize templates as efficient, reusable HTMX fragments
- Maintain clear separation of concerns
- Use partial templates for common components
Key Conventions
- Maintain consistent naming for HTMX attributes
- Ensure fast and intuitive interactions
- Structure templates with clear separation of concerns
- Favor declarative attributes over JavaScript event handlers
forum用户评价 (0)
发表评价
效果
易用性
文档
兼容性
暂无评价,来写第一条吧
统计数据
安装量0
评分0.0 / 5.0
版本1.0.0
更新日期2026年3月17日
对比案例0 组
用户评分
0.0(0)
5
0%
4
0%
3
0%
2
0%
1
0%
为此 Skill 评分
0.0
兼容平台
🔧Claude Code
时间线
创建2026年3月17日
最后更新2026年3月17日