Socket
Socket
Sign inDemoInstall

metro-inspector-proxy

Package Overview
Dependencies
Maintainers
2
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

metro-inspector-proxy

🚇 Inspector proxy for React Native and dev tools integration.


Version published
Weekly downloads
839K
decreased by-27.94%
Maintainers
2
Weekly downloads
 
Created

Package description

What is metro-inspector-proxy?

The metro-inspector-proxy npm package is designed to enable debugging of React Native applications by acting as a bridge between the Metro bundler and various debugging tools. It facilitates the connection and communication between the Metro server and debugging clients, allowing developers to inspect and debug their React Native apps more effectively.

What are metro-inspector-proxy's main functionalities?

Debugging Connection Setup

This code sample demonstrates how to set up the metro-inspector-proxy to start a debugging session. It involves creating an instance of the MetroInspectorProxy and calling the start method to initiate the proxy server, enabling the connection between the Metro bundler and debugging tools.

const MetroInspectorProxy = require('metro-inspector-proxy');

async function setupDebugging() {
  const proxy = new MetroInspectorProxy();
  await proxy.start();
  console.log('Inspector proxy started');
}

setupDebugging();

Other packages similar to metro-inspector-proxy

Keywords

FAQs

Package last updated on 06 Jul 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc