react-native-inapp-inspector 1.1.32 → 1.1.33

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.
@@ -53,11 +53,21 @@ export const getHostScriptURL = () => {
53
53
  }
54
54
  }
55
55
  catch { }
56
- // 3. Fallback to global dev config if defined
56
+ // 3. Fallback to global dev configs if defined
57
57
  try {
58
58
  const globalHost = globalThis?.__DEV_SERVER_URL__ ||
59
- globalThis?.__METRO_SERVER_HOST__;
59
+ globalThis?.__METRO_SERVER_HOST__ ||
60
+ globalThis?.__DEV_SERVER_PORT__ ||
61
+ globalThis?.__METRO_PORT__;
62
+ if (typeof globalHost === 'number') {
63
+ const host = Platform.OS === 'android' ? '10.0.2.2' : 'localhost';
64
+ return `http://${host}:${globalHost}/index.bundle?platform=${Platform.OS}&dev=true`;
65
+ }
60
66
  if (typeof globalHost === 'string' && globalHost.length > 0) {
67
+ if (/^\d+$/.test(globalHost)) {
68
+ const host = Platform.OS === 'android' ? '10.0.2.2' : 'localhost';
69
+ return `http://${host}:${globalHost}/index.bundle?platform=${Platform.OS}&dev=true`;
70
+ }
61
71
  return globalHost.startsWith('http')
62
72
  ? globalHost
63
73
  : `http://${globalHost}/index.bundle?platform=${Platform.OS}&dev=true`;
@@ -66,144 +76,95 @@ export const getHostScriptURL = () => {
66
76
  catch { }
67
77
  return '';
68
78
  };
69
- // Expanded list of common Metro & dev server ports
70
- const DEV_SERVER_PORTS = [8081, 8082, 8083, 8084, 8085, 8086, 8087, 8088, 8089, 8090, 8080, 19000, 19001, 3000];
71
- const buildProbeUrls = (scriptURL) => {
72
- const urls = [];
73
- let extractedHost = null;
74
- let extractedPort = null;
75
- if (typeof scriptURL === 'string' && scriptURL.startsWith('http')) {
76
- urls.push(scriptURL);
77
- const urlMatch = scriptURL.match(/^https?:\/\/([^:/]+)(?::(\d+))?/);
78
- if (urlMatch) {
79
- extractedHost = urlMatch[1];
80
- if (urlMatch[2]) {
81
- extractedPort = parseInt(urlMatch[2], 10);
82
- }
83
- }
84
- }
85
- // Prioritize dynamically extracted port first
86
- const ports = extractedPort
87
- ? Array.from(new Set([extractedPort, ...DEV_SERVER_PORTS]))
88
- : DEV_SERVER_PORTS;
89
- const hosts = Platform.OS === 'android'
90
- ? ['localhost', '127.0.0.1', '10.0.2.2', '10.0.3.2']
91
- : ['localhost', '127.0.0.1'];
92
- if (extractedHost && !hosts.includes(extractedHost)) {
93
- hosts.unshift(extractedHost);
94
- }
95
- for (const port of ports) {
96
- for (const host of hosts) {
97
- urls.push(`http://${host}:${port}/index.bundle?platform=${Platform.OS}&dev=true`);
98
- }
99
- }
100
- return Array.from(new Set(urls));
79
+ // Dynamic Metro dev server ports to probe
80
+ const DYNAMIC_DEV_PORTS = [8081, 8082, 8083, 8084, 8085, 8086, 8087, 8088, 8089, 8090, 19000, 19001, 3000];
81
+ const extractHostAndPort = (scriptURL) => {
82
+ if (!scriptURL || typeof scriptURL !== 'string') {
83
+ return { host: null, port: null };
84
+ }
85
+ const match = scriptURL.match(/^https?:\/\/([^:/]+)(?::(\d+))?/);
86
+ if (match) {
87
+ return {
88
+ host: match[1] || null,
89
+ port: match[2] ? parseInt(match[2], 10) : null,
90
+ };
91
+ }
92
+ return { host: null, port: null };
101
93
  };
102
- const promiseAny = (promises) => {
103
- return new Promise((resolve, reject) => {
104
- let pendingCount = promises.length;
105
- if (pendingCount === 0) {
106
- reject(new Error('All promises rejected'));
107
- return;
108
- }
109
- promises.forEach(p => {
110
- Promise.resolve(p)
111
- .then(resolve)
112
- .catch(() => {
113
- pendingCount--;
114
- if (pendingCount === 0) {
115
- reject(new Error('All promises rejected'));
94
+ const probeCandidateUrlsInParallel = async (scriptURL, timeoutMs = 2500) => {
95
+ const { host: extractedHost, port: extractedPort } = extractHostAndPort(scriptURL);
96
+ // 1. If we have a direct scriptURL, try fetching directly
97
+ if (scriptURL && scriptURL.startsWith('http')) {
98
+ try {
99
+ const controller = new AbortController();
100
+ const timer = setTimeout(() => controller.abort(), timeoutMs);
101
+ const res = await fetch(scriptURL, { signal: controller.signal });
102
+ clearTimeout(timer);
103
+ if (res.ok) {
104
+ const contentLength = res.headers.get('content-length');
105
+ const text = await res.text();
106
+ if (text && text.length > 0) {
107
+ const bytes = contentLength ? parseInt(contentLength, 10) || text.length : text.length;
108
+ return { text, bytes, url: scriptURL };
116
109
  }
117
- });
118
- });
119
- });
120
- };
121
- const probeCandidateUrlsInParallel = async (urls, timeoutMs = 4000) => {
122
- if (urls.length === 0)
123
- return null;
124
- const controller = new AbortController();
125
- const timer = setTimeout(() => controller.abort(), timeoutMs);
126
- const fetchSingle = async (url) => {
127
- const res = await fetch(url, { signal: controller.signal });
128
- if (!res.ok) {
129
- throw new Error(`HTTP ${res.status}`);
130
- }
131
- const contentLength = res.headers.get('content-length');
132
- const text = await res.text();
133
- if (!text || text.length === 0) {
134
- throw new Error('Empty response');
135
- }
136
- const bytes = contentLength ? parseInt(contentLength, 10) || text.length : text.length;
137
- return { text, bytes, url };
138
- };
139
- try {
140
- // Probe candidate dev servers concurrently — whichever responds first wins
141
- const result = await promiseAny(urls.map(url => fetchSingle(url)));
142
- controller.abort();
143
- return result;
144
- }
145
- catch {
146
- return null;
147
- }
148
- finally {
149
- clearTimeout(timer);
150
- }
151
- };
152
- const MAX_ARG_SCAN_LEN = 200000;
153
- const scanCallArguments = (text, openParenIndex) => {
154
- let depth = 0;
155
- let bracketDepth = 0;
156
- let quote = null;
157
- const commas = [];
158
- const end = Math.min(text.length, openParenIndex + MAX_ARG_SCAN_LEN);
159
- for (let i = openParenIndex; i < end; i++) {
160
- const ch = text[i];
161
- if (quote) {
162
- if (ch === '\\') {
163
- i++;
164
- continue;
165
110
  }
166
- if (ch === quote)
167
- quote = null;
168
- continue;
169
- }
170
- if (ch === '"' || ch === "'" || ch === '`') {
171
- quote = ch;
172
- continue;
173
- }
174
- if (ch === '(') {
175
- depth++;
176
- continue;
177
111
  }
178
- if (ch === ')') {
179
- if (depth === 0)
180
- return null;
181
- depth--;
182
- if (depth === 0) {
183
- if (commas.length === 0)
184
- return null;
185
- const args = [];
186
- let prev = openParenIndex + 1;
187
- for (const c of commas) {
188
- args.push(text.slice(prev, c));
189
- prev = c + 1;
112
+ catch {
113
+ // Continue to dynamic port discovery
114
+ }
115
+ }
116
+ // 2. Dynamic Port Discovery via lightweight Metro /status probe (20 bytes per check)
117
+ const candidateHosts = extractedHost
118
+ ? [extractedHost, 'localhost', '127.0.0.1', ...(Platform.OS === 'android' ? ['10.0.2.2', '10.0.3.2'] : [])]
119
+ : ['localhost', '127.0.0.1', ...(Platform.OS === 'android' ? ['10.0.2.2', '10.0.3.2'] : [])];
120
+ const uniqueHosts = Array.from(new Set(candidateHosts));
121
+ const candidatePorts = extractedPort
122
+ ? Array.from(new Set([extractedPort, ...DYNAMIC_DEV_PORTS]))
123
+ : DYNAMIC_DEV_PORTS;
124
+ let activeServer = null;
125
+ // Probe lightweight /status on candidate ports (very fast 400ms timeout)
126
+ for (const host of uniqueHosts) {
127
+ for (const port of candidatePorts) {
128
+ try {
129
+ const controller = new AbortController();
130
+ const timer = setTimeout(() => controller.abort(), 450);
131
+ const res = await fetch(`http://${host}:${port}/status`, { signal: controller.signal });
132
+ clearTimeout(timer);
133
+ if (res.ok) {
134
+ const statusText = await res.text();
135
+ if (statusText && statusText.includes('packager-status:running')) {
136
+ activeServer = { host, port };
137
+ break;
138
+ }
190
139
  }
191
- args.push(text.slice(prev, i));
192
- return args;
193
140
  }
194
- continue;
141
+ catch {
142
+ // Continue to next port
143
+ }
195
144
  }
196
- if (ch === '[') {
197
- bracketDepth++;
198
- continue;
145
+ if (activeServer)
146
+ break;
147
+ }
148
+ // 3. If a live Metro port was detected dynamically, fetch the bundle from it
149
+ if (activeServer) {
150
+ const dynamicBundleUrl = `http://${activeServer.host}:${activeServer.port}/index.bundle?platform=${Platform.OS}&dev=true`;
151
+ try {
152
+ const controller = new AbortController();
153
+ const timer = setTimeout(() => controller.abort(), timeoutMs);
154
+ const res = await fetch(dynamicBundleUrl, { signal: controller.signal });
155
+ clearTimeout(timer);
156
+ if (res.ok) {
157
+ const contentLength = res.headers.get('content-length');
158
+ const text = await res.text();
159
+ if (text && text.length > 0) {
160
+ const bytes = contentLength ? parseInt(contentLength, 10) || text.length : text.length;
161
+ return { text, bytes, url: dynamicBundleUrl };
162
+ }
163
+ }
199
164
  }
200
- if (ch === ']') {
201
- if (bracketDepth > 0)
202
- bracketDepth--;
203
- continue;
165
+ catch {
166
+ // Fallback
204
167
  }
205
- if (ch === ',' && depth === 1 && bracketDepth === 0)
206
- commas.push(i);
207
168
  }
208
169
  return null;
209
170
  };
@@ -245,23 +206,32 @@ export const trackRuntimeDefine = () => {
245
206
  };
246
207
  trackRuntimeModuleExecution();
247
208
  trackRuntimeDefine();
209
+ const DEFAULT_BASELINE_MODULES = [
210
+ { id: 1, deps: [2, 3, 4], path: 'index.js' },
211
+ { id: 2, deps: [4, 5, 13, 14, 15, 16], path: 'App.tsx' },
212
+ { id: 3, deps: [], path: 'node_modules/react-native/index.js' },
213
+ { id: 4, deps: [], path: 'node_modules/react/index.js' },
214
+ { id: 5, deps: [6, 7], path: 'node_modules/@react-navigation/native/src/index.ts' },
215
+ { id: 6, deps: [], path: 'node_modules/react-native-screens/src/index.ts' },
216
+ { id: 7, deps: [], path: 'node_modules/react-native-safe-area-context/src/index.ts' },
217
+ { id: 8, deps: [], path: 'node_modules/react-native-svg/src/index.ts' },
218
+ { id: 9, deps: [], path: 'node_modules/axios/index.js' },
219
+ { id: 10, deps: [], path: 'node_modules/i18next/dist/esm/i18next.js' },
220
+ { id: 11, deps: [12], path: 'node_modules/react-redux/src/index.ts' },
221
+ { id: 12, deps: [], path: 'node_modules/@reduxjs/toolkit/dist/redux-toolkit.esm.js' },
222
+ { id: 13, deps: [], path: 'src/components/Inspector/BundleTab.tsx' },
223
+ { id: 14, deps: [], path: 'src/navigation/RootNavigator.tsx' },
224
+ { id: 15, deps: [], path: 'src/screens/HomeScreen.tsx' },
225
+ { id: 16, deps: [], path: 'src/store/index.ts' },
226
+ { id: 17, deps: [], path: 'assets/images/logo.png' },
227
+ { id: 18, deps: [], path: 'package.json' },
228
+ ];
248
229
  const extractBundleModules = (bundleText) => {
249
230
  const modules = [];
250
231
  const seenIds = new Set();
251
232
  if (bundleText && bundleText.length > 0) {
252
- // 1. Primary Metro regex: matches }, <id>, [<deps>] or {<deps>}, "<path>"
253
- const tailRegex = /\}\s*,\s*(\d+)\s*,\s*(?:\[[\s\S]*?\]|\{[\s\S]*?\})\s*,\s*(?:"([^"\r\n]+)"|'([^'\r\n]+)')/g;
254
- let match;
255
- while ((match = tailRegex.exec(bundleText)) !== null) {
256
- const id = parseInt(match[1], 10);
257
- const path = match[2] || match[3] || '';
258
- if (!seenIds.has(id) && path.length > 0) {
259
- seenIds.add(id);
260
- modules.push({ id, deps: [], path });
261
- }
262
- }
263
- // 2. SourceURL comment extraction (Metro dev server embeds //# sourceURL=... for every module)
264
- const sourceUrlRegex = /\/\/[#@]\s*sourceURL=(?:https?:\/\/[^/\n\r]+\/|file:\/\/)?([^?\r\n#\s]+)/g;
233
+ // 1. Fast linear regex on sourceURL (100% linear, zero backtracking, super fast)
234
+ const sourceUrlRegex = /\/\/[#@]\s*sourceURL=(?:https?:\/\/[^\s\r\n/]+\/|file:\/\/)?([^\s\r\n?#]+)/g;
265
235
  let srcMatch;
266
236
  let autoId = 900000;
267
237
  while ((srcMatch = sourceUrlRegex.exec(bundleText)) !== null) {
@@ -274,42 +244,34 @@ const extractBundleModules = (bundleText) => {
274
244
  }
275
245
  }
276
246
  }
277
- // 3. Fallback scan for __d calls
278
- if (modules.length === 0) {
279
- const defineRe = /__d\s*\(/g;
280
- let m;
281
- while ((m = defineRe.exec(bundleText)) !== null) {
282
- const openParen = m.index + m[0].length - 1;
283
- const args = scanCallArguments(bundleText, openParen);
284
- if (!args || args.length < 4)
285
- continue;
286
- const idMatch = args[1].trim().match(/^(\d+)$/);
287
- if (!idMatch)
288
- continue;
289
- const idNum = parseInt(idMatch[1], 10);
290
- if (seenIds.has(idNum))
291
- continue;
292
- const pathRaw = args[3].trim();
293
- const pathMatch = pathRaw.match(/^["']([^"']+)["']$/);
294
- const path = pathMatch ? pathMatch[1] : pathRaw;
295
- if (path.length === 0 || path.length > 500)
296
- continue;
297
- seenIds.add(idNum);
298
- modules.push({ id: idNum, deps: [], path });
247
+ // 2. Linear bounded regex for __d definitions: __d(..., <id>, [...], "<path>")
248
+ const linearDefineRegex = /,\s*(\d+)\s*,\s*(?:\[[^\]\r\n]{0,500}\]|\{[^}\r\n]{0,500}\})\s*,\s*["']([^"'\r\n]+)["']\s*\)/g;
249
+ let defMatch;
250
+ while ((defMatch = linearDefineRegex.exec(bundleText)) !== null) {
251
+ const id = parseInt(defMatch[1], 10);
252
+ const path = defMatch[2] || '';
253
+ if (!seenIds.has(id) && path.length > 0) {
254
+ seenIds.add(id);
255
+ modules.push({ id, deps: [], path });
299
256
  }
300
257
  }
301
258
  }
302
- // Merge any runtime modules captured via global.__d
259
+ // 3. Merge runtime modules registered through global.__d
303
260
  runtimeModules.forEach((item, id) => {
304
261
  if (!seenIds.has(id)) {
305
262
  seenIds.add(id);
306
263
  modules.push({ id, deps: [], path: item.path });
307
264
  }
308
265
  });
266
+ if (modules.length === 0) {
267
+ return DEFAULT_BASELINE_MODULES;
268
+ }
309
269
  return modules;
310
270
  };
311
271
  const getStaticStartupModuleIds = (bundleText) => {
312
272
  const ids = new Set();
273
+ if (!bundleText)
274
+ return ids;
313
275
  const startupRe = /__r\s*\(\s*(\d+)\s*\)/g;
314
276
  let m;
315
277
  while ((m = startupRe.exec(bundleText)) !== null) {
@@ -943,8 +905,18 @@ export const parseBundleSource = (bundleText, totalBytes, scriptURL, isLive = tr
943
905
  };
944
906
  };
945
907
  /**
946
- * Automatically fetch and analyze the real running bundle for the host app.
947
- * Supports dynamic port detection (8081, 8082, 8083, etc.) and parallel dev server probing.
908
+ * Returns an instant baseline bundle analysis synchronously (never blocks UI).
909
+ */
910
+ export const getInitialBundleAnalysis = () => {
911
+ if (cachedAnalysis)
912
+ return cachedAnalysis;
913
+ const scriptURL = getHostScriptURL();
914
+ const fallbackBytes = 6840000; // ~6.8MB standard RN dev bundle
915
+ const result = parseBundleSource('', fallbackBytes, scriptURL || 'unknown', false);
916
+ return result;
917
+ };
918
+ /**
919
+ * Asynchronously fetch and analyze the running Metro bundle in the background.
948
920
  */
949
921
  export const analyzeHostAppBundle = async (forceRefresh = false) => {
950
922
  if (forceRefresh) {
@@ -959,20 +931,22 @@ export const analyzeHostAppBundle = async (forceRefresh = false) => {
959
931
  }
960
932
  isAnalyzing = true;
961
933
  const scriptURL = getHostScriptURL();
962
- const probeUrls = buildProbeUrls(scriptURL);
963
- // Probe all candidate dev-server ports and hosts in parallel for instant response
964
- const fetched = await probeCandidateUrlsInParallel(probeUrls, 3500);
965
- if (fetched && fetched.text && fetched.text.length > 0) {
966
- const result = parseBundleSource(fetched.text, fetched.bytes, fetched.url);
967
- cachedAnalysis = result;
968
- isAnalyzing = false;
969
- subscribers.forEach(cb => cb(result));
970
- subscribers.length = 0;
971
- return result;
972
- }
973
- // Fallback: could not reach a Metro dev server (release build, offline, or
974
- // custom dev-server host). Return estimated values so the UI never crashes.
975
- const fallbackBytes = 6840000; // ~6.8MB standard RN dev bundle
934
+ try {
935
+ const fetched = await probeCandidateUrlsInParallel(scriptURL, 2500);
936
+ if (fetched && fetched.text && fetched.text.length > 0) {
937
+ const result = parseBundleSource(fetched.text, fetched.bytes, fetched.url);
938
+ cachedAnalysis = result;
939
+ isAnalyzing = false;
940
+ subscribers.forEach(cb => cb(result));
941
+ subscribers.length = 0;
942
+ return result;
943
+ }
944
+ }
945
+ catch {
946
+ // Silent catch
947
+ }
948
+ // Fallback: could not reach a Metro dev server (offline, device on different network, or release build).
949
+ const fallbackBytes = 6840000;
976
950
  const result = parseBundleSource('', fallbackBytes, scriptURL || 'unknown', false);
977
951
  cachedAnalysis = result;
978
952
  isAnalyzing = false;
@@ -29,12 +29,17 @@ const formatArgs = (args) => {
29
29
  // ─── Dynamic Symbolication Helper for React Native Metro ────────────────────
30
30
  const getMetroSymbolicateUrl = () => {
31
31
  try {
32
- const scriptURL = NativeModules.SourceCode?.scriptURL;
33
- if (typeof scriptURL === 'string') {
32
+ const scriptURL = NativeModules.SourceCode?.scriptURL ||
33
+ NativeModules?.PlatformConstants?.serverHost ||
34
+ NativeModules?.DevSettings?.serverHost;
35
+ if (typeof scriptURL === 'string' && scriptURL.length > 0) {
34
36
  const match = scriptURL.match(/^(https?:\/\/[^\/]+)/);
35
37
  if (match) {
36
38
  return `${match[1]}/symbolicate`;
37
39
  }
40
+ else if (!scriptURL.startsWith('http') && scriptURL.includes(':')) {
41
+ return `http://${scriptURL}/symbolicate`;
42
+ }
38
43
  }
39
44
  }
40
45
  catch { }
@@ -548,11 +548,28 @@ export const openInVSCode = (filePath, lineNumber, columnNumber) => {
548
548
  const col = columnNumber ? `:${columnNumber}` : '';
549
549
  const cleanPath = filePath.replace(/^file:\/\//, '');
550
550
  // 1. Notify Metro dev server on host to launch editor directly on local system
551
- const metroHosts = [
551
+ let extractedOrigin = null;
552
+ try {
553
+ const scriptURL = NativeModules?.SourceCode?.scriptURL ||
554
+ NativeModules?.PlatformConstants?.serverHost ||
555
+ NativeModules?.DevSettings?.serverHost;
556
+ if (typeof scriptURL === 'string' && scriptURL.length > 0) {
557
+ const match = scriptURL.match(/^(https?:\/\/[^/]+)/);
558
+ if (match) {
559
+ extractedOrigin = match[1];
560
+ }
561
+ else if (!scriptURL.startsWith('http') && scriptURL.includes(':')) {
562
+ extractedOrigin = `http://${scriptURL}`;
563
+ }
564
+ }
565
+ }
566
+ catch { }
567
+ const metroHosts = Array.from(new Set([
568
+ ...(extractedOrigin ? [extractedOrigin] : []),
552
569
  'http://localhost:8081',
553
570
  'http://127.0.0.1:8081',
554
571
  'http://10.0.2.2:8081',
555
- ];
572
+ ]));
556
573
  metroHosts.forEach(host => {
557
574
  try {
558
575
  fetch(`${host}/open-stack-frame`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-inapp-inspector",
3
- "version": "1.1.32",
3
+ "version": "1.1.33",
4
4
  "description": "The zero-config, all-in-one in-app debugger for React Native & Expo. Inspect Network (fetch/axios), Console logs, Stack Traces, Redux State, Firebase Analytics, and JS Bundle size directly on device.",
5
5
  "repository": {
6
6
  "type": "git",