Route Inspector

+
UniversalWorks with Expo & React Native CLI

This tool works with both Expo and React Native CLI projects. Just install and go.

See every route in your app and track navigation in real-time. Browse your sitemap, jump to any screen, and debug navigation issues instantly.

Route Sitemap

Route Sitemap

Browse all your app routes with stats—total, static, dynamic, catch-all, and layouts. Expand any route to see parameters.

Supported Libraries

Expo Router

File-based routing for Expo

React Navigation

Stack, tab, and drawer navigation

Auto-detection — The Route Inspector automatically detects which navigation library you're using and adapts accordingly.


Installation

npm install @buoy-gg/route-events

That's it. The Route Inspector auto-detects your navigation setup and appears in your FloatingDevTools menu.


What You Can Do

Sitemap

Browse all app routes

Timeline

Navigation event history

Navigate

Jump to any route

Search

Filter routes instantly

Copy

Export paths to clipboard

Stats

Route counts by type


Route Types

Static

Fixed path like /about

Dynamic

Parameterized like /user/[id]

Catch-All

Matches any path [...slug]

Index

Default route for a directory

Layout

Shared UI wrapper

Group

Organizational folders (auth)


Event Timeline

Every navigation is tracked with:

  • Path — Where you navigated to
  • Params — Route parameters passed
  • Timestamp — When it happened
  • Duration — Time since previous navigation

Tap any event to open its detail page — the full route template, from/to paths, timing, segments, and params, all copyable, plus a Go to route action to jump straight there. This matches how events open in the Events tool.


What's Next