Add @axonpack/expo-devtools to Debugging - #1247
Open
abappi19 wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
@axonpack/expo-devtoolsunder Development Tools → Debugging.What it is
Browser-style devtools that run inside the app itself — no desktop debugger, no cable, nothing to attach. A floating button opens a panel with six tabs:
fetch,XMLHttpRequestand in-app WebView request, with full bodies, a resend sandbox, throttling, and copy-as-cURL/fetchWhy it's worth a slot next to Reactotron and Buoy
The differentiator is that it is safe to leave in a production build. Nothing is patched and nothing is recorded until
init()is called, so guarding that one call makes the whole package inert — you ship it once and turn it on per environment, rather than maintaining a dev-only dependency. Reactotron needs a desktop app and a connection; this needs neither.It also registers storage rather than discovering it — the consumer passes in its own adapters, so the library depends on no storage package and forces none on anyone. There is exactly one small native module (Expo Modules API, Swift + Kotlin), used only to block the main thread and read the real process start time; everything else is TypeScript, and it degrades gracefully in Expo Go where that module is absent. No config plugin, no
app.jsonchanges.Guidelines