reqwise-core 1.1.4 → 1.1.5
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.
- package/README.md +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# reqwise-core 🚀
|
|
2
2
|
|
|
3
3
|
> **Reqwise** is a powerful, production-ready developer tool npm package that captures, logs, and visualizes HTTP API requests (Axios/Fetch) within React and vanilla JavaScript applications.
|
|
4
4
|
|
|
5
5
|
It operates like a mini **Postman** or **Chrome DevTools Network** panel embedded directly inside your application. Through a floating aside panel, developers can inspect requests in real-time, browse page history, analyze API endpoints, and send manual test requests with a single click.
|
|
6
6
|
|
|
7
|
-
**Version:** 1.1.
|
|
7
|
+
**Version:** 1.1.5 | **Status:** Production Ready
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -78,17 +78,17 @@ It operates like a mini **Postman** or **Chrome DevTools Network** panel embedde
|
|
|
78
78
|
|
|
79
79
|
### npm
|
|
80
80
|
```bash
|
|
81
|
-
npm install
|
|
81
|
+
npm install reqwise-core
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
### pnpm
|
|
85
85
|
```bash
|
|
86
|
-
pnpm add
|
|
86
|
+
pnpm add reqwise-core
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
### yarn
|
|
90
90
|
```bash
|
|
91
|
-
yarn add
|
|
91
|
+
yarn add reqwise-core
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
---
|
|
@@ -267,7 +267,7 @@ interface ReqwiseConfig {
|
|
|
267
267
|
|
|
268
268
|
### Minimal Setup
|
|
269
269
|
```typescript
|
|
270
|
-
import { panel, client } from '
|
|
270
|
+
import { panel, client } from 'reqwise-core'
|
|
271
271
|
|
|
272
272
|
// Initialize client
|
|
273
273
|
client.initClient({ enabled: true })
|
|
@@ -279,7 +279,7 @@ panel.mount()
|
|
|
279
279
|
### Production Configuration
|
|
280
280
|
```typescript
|
|
281
281
|
import axios from 'axios'
|
|
282
|
-
import { panel, client } from '
|
|
282
|
+
import { panel, client } from 'reqwise-core'
|
|
283
283
|
|
|
284
284
|
const api = axios.create({
|
|
285
285
|
baseURL: 'https://api.example.com',
|
|
@@ -348,7 +348,7 @@ client.initClient({
|
|
|
348
348
|
|
|
349
349
|
### Client Methods
|
|
350
350
|
```typescript
|
|
351
|
-
// These are available from
|
|
351
|
+
// These are available from reqwise-core → client module
|
|
352
352
|
client.initClient(config?)
|
|
353
353
|
client.recordPartial(entry)
|
|
354
354
|
client.wrapAxios(axiosInstance)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reqwise-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Production-ready HTTP interceptor and floating developer panel. Captures Axios/Fetch requests, logs them to localStorage, and renders a real-time inspector panel. Supports 15 languages, security masking, hotkey shortcuts, and more.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|