1--- 2title: Introduction to Expo Router 3description: Expo Router is an open-source routing library for Universal React Native applications built with Expo. 4hideTOC: true 5sidebar_title: Introduction 6--- 7 8import { Terminal } from '~/ui/components/Snippet'; 9import { BoxLink } from '~/ui/components/BoxLink'; 10import { GithubIcon, BookOpen02Icon, Rocket02Icon } from '@expo/styleguide-icons'; 11import Video from '~/components/plugins/Video'; 12 13Expo Router is a file-based router for React Native and web applications. It allows you to manage navigation between screens in your app, allowing users to move seamlessly between different parts of your app's UI, using the same components on multiple platforms (Android, iOS, and web). 14 15It brings the best file-system routing concepts from the web to a universal application — allowing your routing to work across every platform. When a file is added to the **app** directory, the file automatically becomes a route in your navigation. 16 17## Features 18 19- **Native**: Built on top of our powerful [React Navigation suite](https://reactnavigation.org/), Expo Router navigation is truly native and platform-optimized by default. 20- **Shareable**: Every screen in your app is automatically deep linkable. Making any route in your app shareable with links. 21- **Offline-first**: Apps are cached and run offline-first, with automatic updates when you publish a new version. Handles all incoming native URLs without a network connection or server. 22- **Optimized**: Routes are automatically optimized with lazy-evaluation in production, and deferred bundling in development. 23- **Iteration**: Universal Fast Refresh across Android, iOS, and web, along with artifact memoization in the bundler to keep you moving fast at scale. 24- **Universal**: Android, iOS, and web share a unified navigation structure, with the ability to drop-down to platform-specific APIs at the route level. 25- **Discoverable**: Expo Router enables build-time static rendering on web, and universal linking to native. Meaning your app content can be indexed by search engines. 26 27## Next steps 28 29<BoxLink 30 title="Quick start" 31 Icon={Rocket02Icon} 32 description="Learn how to quickly get started using Expo Router." 33 href="/routing/installation/#quick-start" 34/> 35<BoxLink 36 title="Manual installation" 37 Icon={BookOpen02Icon} 38 description="Detailed instructions on how to get started and add Expo Router to your existing app." 39 href="/routing/installation/#manual-installation" 40/> 41<BoxLink 42 title="Example app" 43 Icon={GithubIcon} 44 description="See the source code for the example app on GitHub." 45 href="https://github.com/expo/expo/tree/main/templates/expo-template-tabs" 46/> 47