Socket
Socket
Sign inDemoInstall

expo-dev-launcher

Package Overview
Dependencies
Maintainers
24
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-dev-launcher

Pre-release version of the Expo development launcher package for testing.


Version published
Weekly downloads
297K
increased by3.64%
Maintainers
24
Weekly downloads
 
Created

What is expo-dev-launcher?

The expo-dev-launcher package is a development tool for Expo applications that allows developers to launch and test their apps in a development environment. It provides functionalities to reload the app, open the developer menu, and handle deep links, among other features.

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

Reload the App

This feature allows developers to programmatically reload the application, which is useful for testing changes without manually restarting the app.

import { reloadAsync } from 'expo-dev-launcher';

async function reloadApp() {
  await reloadAsync();
}

Open Developer Menu

This feature enables developers to open the developer menu programmatically, providing quick access to development tools and options.

import { openMenu } from 'expo-dev-launcher';

function openDevMenu() {
  openMenu();
}

Handle Deep Links

This feature allows the app to handle deep links, making it easier to test and debug deep linking functionality during development.

import { addDeepLinkListener } from 'expo-dev-launcher';

addDeepLinkListener((url) => {
  console.log('Deep link received:', url);
});

Other packages similar to expo-dev-launcher

Keywords

FAQs

Package last updated on 04 Aug 2021

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