You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/architecture.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ The client never depends on private APIs and never assumes anything not exposed
72
72
### `packages/` — companion packages
73
73
74
74
-**`packages/nativescript-inspector/`** ships `@nativescript/simdeck-inspector`, a TypeScript runtime that connects from a NativeScript app to the server's WebSocket inspector hub. See [NativeScript Runtime](/inspector/nativescript).
75
-
-**`packages/react-native-inspector/`** ships `@simdeck/react-native-inspector`, a React Native runtime that connects from an app to the server's WebSocket inspector hub and publishes React Fiber hierarchy data. See [React Native Runtime](/inspector/react-native).
75
+
-**`packages/react-native-inspector/`** ships `react-native-simdeck`, a React Native runtime that connects from an app to the server's WebSocket inspector hub and publishes React Fiber hierarchy data. See [React Native Runtime](/inspector/react-native).
76
76
-**`packages/inspector-agent/`** ships `SimDeckInspectorAgent`, a Swift Package you can link from a debug iOS app to expose its UIKit hierarchy. See [Swift In-App Agent](/inspector/swift).
77
77
-**`packages/vscode-extension/`** is the VS Code extension that opens the browser client inside a webview panel and auto-starts the server.
78
78
-**`packages/simdeck-test/`** ships `simdeck/test`, a small JS/TS wrapper around daemon startup and the REST control API. See [Testing](/guide/testing).
Copy file name to clipboardExpand all lines: docs/inspector/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ SimDeck blends three different ways to inspect what an iOS app is rendering:
7
7
|**Native AX**| Any simulator app via the Simulator accessibility stack. | Default fallback. |
8
8
|**Swift in-app agent**| Apps that link `SimDeckInspectorAgent` in DEBUG. | Best for native iOS apps you control. |
9
9
|**NativeScript runtime**| NativeScript apps that import `@nativescript/simdeck-inspector`. | Best for NativeScript apps — exposes the logical view tree, not just UIKit. |
10
-
|**React Native runtime**| React Native apps that import `@simdeck/react-native-inspector`.| Best for React Native apps — exposes components and Metro source locations. |
10
+
|**React Native runtime**| React Native apps that import `react-native-simdeck`. | Best for React Native apps — exposes components and Metro source locations. |
11
11
12
12
The HTTP API picks the most specific source available, falls back to the next one when something goes wrong, and tells the client which sources were available so the UI can offer a switch.
Copy file name to clipboardExpand all lines: docs/inspector/react-native.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
# React Native Runtime Inspector
2
2
3
-
`@simdeck/react-native-inspector` is a debug-only React Native iOS package that publishes the React component tree to SimDeck. It uses the same [Inspector Protocol](/api/inspector-protocol) as the Swift and NativeScript inspectors, but connects outbound to the SimDeck server over WebSocket.
3
+
`react-native-simdeck` is a debug-only React Native iOS package that publishes the React component tree to SimDeck. It uses the same [Inspector Protocol](/api/inspector-protocol) as the Swift and NativeScript inspectors, but connects outbound to the SimDeck server over WebSocket.
4
4
5
5
The package source lives at `packages/react-native-inspector/` in this repo.
6
6
7
7
## Install
8
8
9
9
```sh
10
-
npm install @simdeck/react-native-inspector
10
+
npm install react-native-simdeck
11
11
cd ios && pod install
12
12
```
13
13
@@ -17,7 +17,7 @@ Call `startSimDeckReactNativeInspector(...)` before `AppRegistry.registerCompone
Copy file name to clipboardExpand all lines: packages/react-native-inspector/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
# React Native Inspector
2
2
3
-
`@simdeck/react-native-inspector` is a debug-only runtime inspector for React Native iOS apps. It connects to the SimDeck server over the same WebSocket inspector hub as the NativeScript runtime.
3
+
`react-native-simdeck` is a debug-only runtime inspector for React Native iOS apps. It connects to the SimDeck server over the same WebSocket inspector hub as the NativeScript runtime.
4
4
5
5
## Install
6
6
7
7
```sh
8
-
npm install @simdeck/react-native-inspector
8
+
npm install react-native-simdeck
9
9
cd ios && pod install
10
10
```
11
11
@@ -15,7 +15,7 @@ Install the inspector before `AppRegistry.registerComponent(...)` so it can capt
0 commit comments