vigor-fetch 1.0.0 → 1.0.1

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 +7 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,7 +14,10 @@
14
14
  npm install vigor-fetch
15
15
 
16
16
  ## 🚀 Quick Start
17
- ```import Vigor from 'vigor-fetch';
17
+
18
+ ```
19
+
20
+ import Vigor from 'vigor-fetch';
18
21
 
19
22
  const api = new Vigor("https://api.example.com")
20
23
  .path("/v1/data")
@@ -36,7 +39,9 @@ const api = new Vigor("https://api.example.com")
36
39
  return { ...res, timestamp: Date.now() };
37
40
  });
38
41
 
39
- const data = await api.request();```
42
+ const data = await api.request();
43
+
44
+ ```
40
45
 
41
46
  ## 🛠️ API Reference
42
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vigor-fetch",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Smart, zero-dependency HTTP client with self-healing retries for rate-limited servers.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",