---
title: Development and production modes
sidebar_title: Development and production
---
import Video from '~/components/plugins/Video';
import { Terminal } from '~/ui/components/Snippet';
Your project will always run in either **development** or **production** mode. By default, running your project locally with `npx expo start` runs it in development mode, whereas a published project (with `eas update`), or any standalone app, will run in production mode.
**Development mode** includes useful warnings and gives you access to tools that make development and debugging easier. **Production mode** [minifies your code](/guides/customizing-metro/#minification) and better represents the performance your app will have on end users' devices. Let's look at each of these modes in more detail and learn how you can switch between them.
## Development mode
React Native includes some very useful tools for development: remote JavaScript debugging in Chrome, live reload, hot reloading, and an element inspector similar to the beloved inspector you use in Chrome. If you want to see how to use those tools, see [Debugging](/workflow/debugging).
Development mode also performs validations while your app is running to give you warnings if, for example, you're using a deprecated property or if you forgot to pass a required property into a component. The video below shows the Element Inspector and Performance Monitor in action on both Android and iOS simulators:
> **warning** **This comes at a cost. Your app runs slower in development mode.**
You can switch it on and off with the Expo CLI, see [Production mode](#production-mode). When you switch it, close and re-open your app for the change to take effect. **Any time you are testing your app's performance, make sure to disable development mode**.
### Showing the Developer Menu
The Developer Menu gives you access to a host of features that make development and debugging much easier. Invoking it depends on the device where you are running your application:
- Terminal UI: Press M in the terminal to open the menu on connected iOS and Android
- iOS Device: Shake the device a little bit.
- iOS Simulator: Hit Ctrl + Cmd ⌘ + Z on a Mac in the emulator to simulate the shake gesture, or press Cmd ⌘ + D.
- Android Device: Shake the device vertically a little bit.
- Android Emulator: Either hit Cmd ⌘ + M or Ctrl + M or run `adb shell input keyevent 82` in your terminal window.
## Production mode
Production mode is most useful for two things:
- Testing your app's performance, as Development slows your app down considerably.
- Catching bugs that only show up in production.
The easiest way to simulate how your project will run on end users' devices is with the command:
Besides running in production mode (which tells the Metro bundler to set the `__DEV__` environment variable to `false`, among a few other things), the `--minify` flag will minify your app. This flag will also eliminate unnecessary data such as comments, formatting, and unused code.
If you're getting an error or crash in your standalone app, running your project with this command can save you a lot of time in finding the root cause.