Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

expo-router

Package Overview
Dependencies
Maintainers
26
Versions
216
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-router

Expo Router is a file-based router for React Native and web applications.

  • 3.5.14
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
348K
increased by1.75%
Maintainers
26
Weekly downloads
 
Created

What is expo-router?

The expo-router package is designed to provide a routing solution for React Native applications built with Expo. It allows developers to define and manage navigation within their apps using a file-based routing system, similar to Next.js for web applications.

What are expo-router's main functionalities?

File-based Routing

This feature allows developers to define routes based on the file structure of their project. The useRouter hook is used to navigate between different screens.

import { useRouter } from 'expo-router';

export default function HomeScreen() {
  const router = useRouter();

  return (
    <View>
      <Button title="Go to Profile" onPress={() => router.push('/profile')} />
    </View>
  );
}

Dynamic Routing

Dynamic routing allows for routes that can change based on parameters. This is useful for user profiles or any other content that is dynamically generated.

import { useRouter } from 'expo-router';

export default function UserScreen({ route }) {
  const { userId } = route.params;
  const router = useRouter();

  return (
    <View>
      <Text>User ID: {userId}</Text>
      <Button title="Go to Home" onPress={() => router.push('/')} />
    </View>
  );
}

Nested Routing

Nested routing allows for more complex navigation structures, where routes can have sub-routes. This is useful for settings pages or any other hierarchical content.

import { useRouter } from 'expo-router';

export default function SettingsScreen() {
  const router = useRouter();

  return (
    <View>
      <Button title="Go to Account Settings" onPress={() => router.push('/settings/account')} />
      <Button title="Go to Privacy Settings" onPress={() => router.push('/settings/privacy')} />
    </View>
  );
}

Other packages similar to expo-router

Keywords

FAQs

Package last updated on 15 May 2024

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