npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@novodip/expo-router-devtools

v1.1.4

Published

Development tools for Expo Router - visualize routes, save navigation states, and debug your app's navigation flow

Downloads

1,192

Readme

Expo Router DevTools

A lightweight development utility for inspecting and debugging routes in Expo Router applications. Designed to be embedded directly into React Native apps without affecting production builds.


Demo

Expo Router DevTools Demo

Watch full 34-second demo video https://github.com/user-attachments/assets/71dd6770-7e92-4275-9497-40b3fbbf1cae

Features

  • View the current route in real time
  • Inspect navigation state changes
  • Minimal, non-intrusive UI
  • Safe to include during development
  • Built with TypeScript and Rollup

Benefits

  • Useful for complex projects that has a lot of routing
  • Useful for projects with query params in many places
  • Keeps track of params and query params and save it in the history
  • Automatically hidden in production
  • Save whatever routes you want and navigate to it
  • Routes are automatically stored in expo secure store

Installation

npm install @novodip/expo-router-devtools

or

yarn add @novodip/expo-router-devtools

Usage

import { ExpoRouterDevTools } from '@novodip/expo-router-devtools'
import { Stack } from 'expo-router'
import { SafeAreaProvider, SafeAreaView } from 'react-native-safe-area-context'

export default function RootLayout() {
  return (
    <SafeAreaProvider>
      <SafeAreaView style={{ flex: 1 }} edges={['top']}>
        <ExpoRouterDevTools />
        <Stack>
          <Stack.Screen name="index" options={{ title: 'Home' }} />
          <Stack.Screen name="profile" options={{ title: 'Profile' }} />
          <Stack.Screen name="posts/index" options={{ title: 'Posts' }} />
          <Stack.Screen name="posts/[id]" options={{ title: 'Post Details' }} />
        </Stack>
      </SafeAreaView>
    </SafeAreaProvider>
  )
}

API Reference

Props

| Prop | Type | Default | Description | | ------------------ | ------------------------- | ------------------------- | ------------------------------------ | | position | 'top' \| 'bottom' | 'top' | Position of the DevTools panel | | hideInProduction | boolean | true | Hide in production builds | | storageKeyPrefix | string | 'expo-router-devtools_' | Prefix for SecureStore keys | | onRouteChange | (route: string) => void | undefined | Callback when route changes | | enableHistory | boolean | true | Enable route history tracking | | maxHistory | number | 10 | Maximum history items | | maxNumOfLines | number | 3 | Max lines for current route display | | replaceRoute | boolean | false | Whether to replace of push the route |

Example

<ExpoRouterDevTools
  position="bottom"
  maxHistory={20}
  onRouteChange={(route) => console.log(route)}
/>