reactoradar 1.6.2 → 1.6.3
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 +7 -7
- package/app.js +3 -3
- package/bin/setup.js +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
|
|
28
28
|
### Console — Interactive Log Viewer
|
|
29
29
|
<p align="center">
|
|
30
|
-
<img src="https://raw.githubusercontent.com/sharanagouda/
|
|
30
|
+
<img src="https://raw.githubusercontent.com/sharanagouda/reactoradar/main/screenshots/consoleLogs.png" alt="Console Panel" width="800" />
|
|
31
31
|
</p>
|
|
32
32
|
|
|
33
33
|
*Collapsible object trees, multi-select level filters, log grouping, search, export as JSON, right-click to copy*
|
|
34
34
|
|
|
35
35
|
### Network — Chrome DevTools-style Inspector
|
|
36
36
|
<p align="center">
|
|
37
|
-
<img src="https://raw.githubusercontent.com/sharanagouda/
|
|
37
|
+
<img src="https://raw.githubusercontent.com/sharanagouda/reactoradar/main/screenshots/networkLogs.png" alt="Network Panel" width="800" />
|
|
38
38
|
</p>
|
|
39
39
|
|
|
40
40
|
*Resizable/sortable columns, slow API highlights, export as HAR, stats bar, hide unwanted URLs, throttling*
|
|
@@ -85,7 +85,7 @@ npx reactoradar # Launch the debugger
|
|
|
85
85
|
|
|
86
86
|
### Option B: Download .dmg
|
|
87
87
|
|
|
88
|
-
1. Download from [Releases](https://github.com/sharanagouda/
|
|
88
|
+
1. Download from [Releases](https://github.com/sharanagouda/reactoradar/releases)
|
|
89
89
|
2. Drag **ReactoRadar** to Applications
|
|
90
90
|
3. Install the SDK: `npx reactoradar setup` from your RN project
|
|
91
91
|
4. Open ReactoRadar from Applications
|
|
@@ -101,8 +101,8 @@ npm install -g reactoradar
|
|
|
101
101
|
### Option D: Build from source
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
|
-
git clone https://github.com/sharanagouda/
|
|
105
|
-
cd
|
|
104
|
+
git clone https://github.com/sharanagouda/reactoradar.git
|
|
105
|
+
cd reactoradar
|
|
106
106
|
npm install
|
|
107
107
|
npm start # dev mode
|
|
108
108
|
npm run build # build .dmg
|
|
@@ -314,8 +314,8 @@ If ReactoRadar helps your workflow, consider supporting development:
|
|
|
314
314
|
Contributions welcome! Fork → branch → PR.
|
|
315
315
|
|
|
316
316
|
```bash
|
|
317
|
-
git clone https://github.com/sharanagouda/
|
|
318
|
-
cd
|
|
317
|
+
git clone https://github.com/sharanagouda/reactoradar.git
|
|
318
|
+
cd reactoradar
|
|
319
319
|
npm install
|
|
320
320
|
npm start
|
|
321
321
|
```
|
package/app.js
CHANGED
|
@@ -402,7 +402,7 @@ function _applyUpdateBanner() {
|
|
|
402
402
|
btn.innerHTML = '<button id="updateBtn" class="tb-btn primary" style="font-size:11px;padding:6px 16px">Download v' + latest + '</button>';
|
|
403
403
|
aboutEl.appendChild(btn);
|
|
404
404
|
$('updateBtn')?.addEventListener('click', () => {
|
|
405
|
-
window.electronAPI?.openExternal('https://github.com/sharanagouda/
|
|
405
|
+
window.electronAPI?.openExternal('https://github.com/sharanagouda/reactoradar/releases');
|
|
406
406
|
});
|
|
407
407
|
}
|
|
408
408
|
}
|
|
@@ -3694,10 +3694,10 @@ function initSettingsPanel() {
|
|
|
3694
3694
|
|
|
3695
3695
|
// About links
|
|
3696
3696
|
$('linkGithub')?.addEventListener('click', () => {
|
|
3697
|
-
window.electronAPI?.openExternal('https://github.com/sharanagouda/
|
|
3697
|
+
window.electronAPI?.openExternal('https://github.com/sharanagouda/reactoradar');
|
|
3698
3698
|
});
|
|
3699
3699
|
$('linkDocs')?.addEventListener('click', () => {
|
|
3700
|
-
window.electronAPI?.openExternal('https://github.com/sharanagouda/
|
|
3700
|
+
window.electronAPI?.openExternal('https://github.com/sharanagouda/reactoradar#readme');
|
|
3701
3701
|
});
|
|
3702
3702
|
$('linkLinkedIn')?.addEventListener('click', () => {
|
|
3703
3703
|
window.electronAPI?.openExternal('https://www.linkedin.com/in/sharanagoudamk/');
|
package/bin/setup.js
CHANGED
|
@@ -465,7 +465,7 @@ ${SDK_MARKER_END}
|
|
|
465
465
|
console.log(' 1. Start the debugger: ' + C.cyan + 'open "/Applications/ReactoRadar.app"' + C.reset);
|
|
466
466
|
} else {
|
|
467
467
|
console.log(' 1. Start the debugger: ' + C.cyan + 'npx reactoradar' + C.reset);
|
|
468
|
-
console.log(' ' + C.dim + '(or download .dmg from https://github.com/sharanagouda/
|
|
468
|
+
console.log(' ' + C.dim + '(or download .dmg from https://github.com/sharanagouda/reactoradar/releases)' + C.reset);
|
|
469
469
|
}
|
|
470
470
|
console.log(' 2. Run your RN app: ' + C.cyan + 'npx react-native start --reset-cache' + C.reset);
|
|
471
471
|
console.log(' 3. Console, Network, Storage auto-connect');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reactoradar",
|
|
3
3
|
"productName": "ReactoRadar",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.3",
|
|
5
5
|
"description": "macOS debugger for React Native — Console, Sources, Network, Performance, Memory, Redux, AsyncStorage, React tree. Supports RN 0.74+ with Hermes and New Architecture.",
|
|
6
6
|
"main": "main.js",
|
|
7
7
|
"bin": {
|
|
@@ -18,16 +18,16 @@
|
|
|
18
18
|
"network-inspector",
|
|
19
19
|
"hermes",
|
|
20
20
|
"flipper-alternative",
|
|
21
|
-
"
|
|
21
|
+
"reactoradar",
|
|
22
22
|
"macos"
|
|
23
23
|
],
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|
|
26
|
-
"url": "git+https://github.com/sharanagouda/
|
|
26
|
+
"url": "git+https://github.com/sharanagouda/reactoradar.git"
|
|
27
27
|
},
|
|
28
|
-
"homepage": "https://github.com/sharanagouda/
|
|
28
|
+
"homepage": "https://github.com/sharanagouda/reactoradar#readme",
|
|
29
29
|
"bugs": {
|
|
30
|
-
"url": "https://github.com/sharanagouda/
|
|
30
|
+
"url": "https://github.com/sharanagouda/reactoradar/issues"
|
|
31
31
|
},
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"author": "sharanagouda",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
{
|
|
67
67
|
"provider": "github",
|
|
68
68
|
"owner": "sharanagouda",
|
|
69
|
-
"repo": "
|
|
69
|
+
"repo": "reactoradar"
|
|
70
70
|
}
|
|
71
71
|
],
|
|
72
72
|
"mac": {
|