@@ -40,7 +40,7 @@ npx serve .
4040
4141## 📦 Example Categories
4242
43- ** 75+ interactive examples across 14 feature categories**
43+ ** 89 interactive examples across 16 feature categories**
4444
4545### 📦 ** Basic Usage**
4646Core HTTP operations with Luminara's helper methods:
@@ -167,6 +167,13 @@ Automatic in-flight duplicate prevention (10 examples):
167167- ** Error Propagation** - Failed requests share errors with duplicates
168168- ** Integration with Retry** - Deduplication + retry work together
169169
170+ ### 🍪 ** Cookie Jar Plugin**
171+ Server-side cookie management with automatic Cookie/Set-Cookie header handling (4 examples):
172+ - ** Basic Cookie Management** - Automatic cookie storage and transmission
173+ - ** Manual Cookie Operations** - Direct access to cookie jar for CRUD operations
174+ - ** Shared Cookie Jar** - Share cookies across multiple client instances
175+ - ** SSR Usage Pattern** - Server-side rendering cookie persistence
176+
170177## 🏗️ Architecture
171178
172179### ** Separation of Concerns**
@@ -192,7 +199,9 @@ sandbox/
192199 ├── verboseLogging.js # 📝 Debugging and tracing
193200 ├── customDriver.js # 🚗 Driver extensibility
194201 ├── debouncer.js # ⏱️ Request debouncing
195- └── deduplicator.js # 🔄 Duplicate prevention
202+ ├── deduplicator.js # 🔄 Duplicate prevention
203+ ├── requestHedging.js # 🏎️ Request hedging
204+ └── cookieJarPlugin.js # 🍪 Cookie jar plugin
196205```
197206
198207### ** Layer Responsibilities**
@@ -298,13 +307,17 @@ The sandbox demonstrates the universal API that works consistently across all th
2983073 . ** ⏱️ Timeout** - Understand timeout handling
2993084 . ** 🔄 Retry** - Explore retry mechanisms
3003095 . ** 📈 Backoff Strategies** - Master advanced retry patterns
301- 6 . ** � Rate Limiting** - Control request flow with token bucket algorithm
302- 7 . ** �📦 Response Types** - Learn response handling options
303- 8 . ** 🔌 Interceptors** - Implement request/response middleware
304- 9 . ** 🛠️ Error Handling** - Master comprehensive error scenarios
305- 10 . ** 📊 Stats System** - Explore real-time metrics and analytics
306- 10 . ** 📝 Verbose Logging** - Learn debugging and tracing techniques
307- 11 . ** �🚗 Custom Driver** - Explore extensibility options
310+ 6 . ** 🚦 Rate Limiting** - Control request flow with token bucket algorithm
311+ 7 . ** 🏎️ Request Hedging** - Optimize latency with concurrent requests
312+ 8 . ** 📦 Response Types** - Learn response handling options
313+ 9 . ** 🔌 Interceptors** - Implement request/response middleware
314+ 10 . ** 🛠️ Error Handling** - Master comprehensive error scenarios
315+ 11 . ** 📊 Stats System** - Explore real-time metrics and analytics
316+ 12 . ** 📝 Verbose Logging** - Learn debugging and tracing techniques
317+ 13 . ** 🚗 Custom Driver** - Explore extensibility options
318+ 14 . ** ⏱️ Debouncer** - Prevent redundant rapid-fire requests
319+ 15 . ** 🔄 Request Deduplicator** - Eliminate concurrent duplicate requests
320+ 16 . ** 🍪 Cookie Jar Plugin** - Server-side cookie management
308321
309322Each category builds upon previous concepts, providing a comprehensive understanding of Luminara's capabilities.
310323
0 commit comments