getConnectedApps
Retrieve connected apps in a React Native project by specifying the Metro server port. Simplify debugging with actionable insights into active app connections.
Instructions
Get the connected apps
Input Schema
Name | Required | Description | Default |
---|---|---|---|
metroServerPort | Yes | The port number of the Metro server |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"metroServerPort": {
"description": "The port number of the Metro server",
"type": "number"
}
},
"required": [
"metroServerPort"
],
"type": "object"
}