rauchg / next-route-visualizer

Home Page:https://next-route-visualizer.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

next-route-visualizer

A package for visualizing Next.js app directory routes.

Demo website

Next Route Visualizer is designed to display the routes for the app directory of Next.js (starting at version 13) in a visual tree-like fashion. This package aims to help developers better understand the routes in their Next.js app directory by providing a clear visual representation of the routes and their relationships.

This package can be useful if you are new to the app directory and need to visualize it.

Preview Next Route Visualizer

Usage

Installation

You can install next-route-visualizer using npm:

npm install next-route-visualizer

Importing

Once you've installed the package, you can import the Visualizer component into any page of your Next.js version 13 app directory. For ease of use just import it in the root page for instance:

import Visualizer from 'next-route-visualizer';

export default function Home() {
  return (
    <Visualizer />
  )
}

That's it! The Visualizer component will render a tree chart that displays the routes of your Next.js app directory.

Visualizer props

Prop name Type Description
path String or undefined

Path to the starting route (relative to the app directory).
If not provided, the component will search for the app directory within the root folder or .src/ folder.

baseURL String or undefined

Base URL of your project.
Default: http://localhost:3000


Example

The below example shows how to use the path and baseURL parameters.

import Visualizer from 'next-route-visualizer';

export default function Home() {
  return (
    <Visualizer path="blog" baseURL="https://example.com" />
  )
}

Only the sub-routes of blog (blog included) will be displayed on the chart. This assumes that blog is a direct sub-route of the app root (i.e ./app/blog in your file system).


Features

Under the hood, next-route-visualizer utilizes ReactFlow to build the chart.

  • Starting route: You can start displaying at any route of your project.
  • Side dashboard: Display information about a route
    • Name
    • Link
    • Path
    • Type
    • Next.js files
  • Route selection: Select a Route from the chart to see its information
  • Node type colors: The nodes in the chart have different colors based on the type of route:
    • Root: Entry point
    • Route: A normal route
    • Route group: folder that are marked in parenthesis e.g. (routeGroup)
    • Route segment: all the various slug options e.g
      • [slug]
      • [...slug]
      • [[...slug]]
  • Preview the Next.js files included in the route with the following icons (files extensions: [.js, .jsx, .ts, .tsx])
    • for page
    • for error or not-found
    • for layout or template
    • for route
    • for loading

Limitations

In order for the component to work properly, the routes need to be retrievef server side, and rendered on the client using ReactFlow.

For that reason, you must refresh the page to see any changes that you applied to your routes, for them to take effect on the chart.


Future work

This is a side project and I do not intend to maintain this component or resolve any issues in the future. The code is definitely a mess and I was too lazy to provide testing for it. I may be open to make a few changes if I feel like it.

On that note, please feel free to use and make any changes that you wish to include.


Dependencies

  • Next >= 13.2.3
  • ReactFlow >= 11.5.6

Note: I didn't use tailwind or any other packages for the styles.

License

Next Router Visualizer is ISC licensed.

Buy Me A Coffee

About

https://next-route-visualizer.vercel.app

License:Other


Languages

Language:TypeScript 89.0%Language:CSS 10.6%Language:JavaScript 0.4%