New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

expo-dev-menu

Package Overview
Dependencies
Maintainers
0
Versions
187
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-dev-menu

Expo/React Native module with the developer menu.

  • 6.0.17
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
277K
decreased by-30.97%
Maintainers
0
Weekly downloads
 
Created

What is expo-dev-menu?

The expo-dev-menu package provides a developer menu for React Native apps built with Expo. It allows developers to access various debugging and development tools directly within the app, making it easier to test and debug applications.

What are expo-dev-menu's main functionalities?

Access Developer Menu

This feature allows developers to open the developer menu programmatically. The developer menu provides various tools and options for debugging and testing the app.

import { DevMenu } from 'expo-dev-menu';

// Open the developer menu
DevMenu.show();

Custom Developer Menu Items

This feature allows developers to add custom items to the developer menu. These items can perform specific actions when selected, providing a way to extend the functionality of the developer menu.

import { registerDevMenuItem } from 'expo-dev-menu';

registerDevMenuItem({
  name: 'Custom Item',
  callback: () => {
    console.log('Custom item selected');
  }
});

Toggle Performance Monitor

This feature allows developers to toggle the performance monitor on and off. The performance monitor provides insights into the app's performance, such as frame rate and memory usage.

import { DevMenu } from 'expo-dev-menu';

// Toggle the performance monitor
DevMenu.togglePerformanceMonitor();

Other packages similar to expo-dev-menu

Keywords

FAQs

Package last updated on 19 Jan 2025

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc