rack-middleware
CommunityBuild and manage Rack middleware for Ruby apps.
Software Engineering#web development#middleware#customization#API development#Ruby#Rack#application development
Authorgeoffjay
Version1.0.0
Installs0
System Documentation
What problem does it solve?
Effectively extending and customizing Ruby web applications (like Sinatra or Rails) often involves working with Rack middleware. Understanding how to develop, configure, and order middleware is crucial for building robust and performant applications.
Core Features & Use Cases
- Middleware Structure: Learn the basic
initializeandcallmethods for creating custom Rack middleware, forming the foundation of your web stack. - Custom Middleware Development: Step-by-step examples for building request logging, token authentication, caching, and request transformation middleware to extend functionality.
- Middleware Ordering Patterns: Guidance on structuring middleware stacks for security-first or API-focused applications, and using conditional middleware for flexible deployment.
- Use Case: A developer needs to add custom logging and authentication to their Sinatra application without modifying the core application logic. This Skill provides detailed examples for creating
RequestLoggerandTokenAuthenticationmiddleware, showing how to integrate them into the Rack stack and ensure proper ordering.
Quick Start
Basic Rack middleware structure
class MyMiddleware def initialize(app, options = {}) @app = app @options = options end
def call(env) # Before request status, headers, body = @app.call(env) # After request [status, headers, body] end end
Usage in config.ru
use MyMiddleware, option: 'value'
Dependency Matrix
Required Modules
redisrack-attackrack-corsrack-sslrack-protection
Components
assetsreferences
💻 Claude Code Installation
Recommended: Let Claude install automatically. Simply copy and paste the text below to Claude Code.
Please help me install this Skill: Name: rack-middleware Download link: https://github.com/geoffjay/claude-plugins/archive/main.zip#rack-middleware Please download this .zip file, extract it, and install it in the .claude/skills/ directory.
Agent Skills Search Helper
Install a tiny helper to your Agent, search and equip skill from 223,000+ vetted skills library on demand.