@fetchkit/ffetch 5.4.0 → 5.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -46,7 +46,7 @@ ffetch uses a plugin architecture for optional features, so you only include wha
46
46
  - [CDN Usage](#cdn-usage)
47
47
  - [Deduplication Limitations](#deduplication-limitations)
48
48
  - [Fetch vs. Axios vs. ky vs. `ffetch`](#fetch-vs-axios-vs-ky-vs-ffetch)
49
- - [Try ffetch in Action](#try-ffetch-in-action)
49
+ - [Try ffetch in Action](#try-ffetch-in-action)
50
50
  - [Join the Community](#join-the-community)
51
51
  - [Contributing](#contributing)
52
52
  - [License](#license)
@@ -373,10 +373,12 @@ See [deduplication.md](./docs/deduplication.md) for full details.
373
373
 
374
374
  Note: built-in plugins in ffetch are opt-in. Use `bulkheadPlugin()` for concurrency isolation and backpressure, `dedupePlugin()` for deduplication, `circuitPlugin()` for circuit breaking, `hedgePlugin()` for tail-latency racing, `requestShortcutsPlugin()` for client HTTP method shortcuts, `responseShortcutsPlugin()` for request-promise parsing shortcuts, and `downloadProgressPlugin()` for streaming download progress. Bundle size: ~3kb core, additional optional plugin imports are tree-shakeable.
375
375
 
376
- ### Try ffetch in Action
376
+ ## Try ffetch in Action
377
377
 
378
378
  Want to see these clients in practice? Check out [ffetch-demo](https://github.com/fetch-kit/ffetch-demo) for working examples and side-by-side comparisons of how ffetch simplifies common fetch patterns.
379
379
 
380
+ 📰 Featured in [Node Weekly #594](https://nodeweekly.com/issues/594)
381
+
380
382
  ## Join the Community
381
383
 
382
384
  Got questions, want to discuss features, or share examples? Join the **Fetch-Kit Discord server**:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fetchkit/ffetch",
3
- "version": "5.4.0",
3
+ "version": "5.4.2",
4
4
  "description": "Fetch wrapper with configurable timeouts, retries, and TypeScript-first DX",
5
5
  "keywords": [
6
6
  "fetch",