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 🙏

© 2024 – Pkg Stats / Ryan Hefner

next-scout

v1.2.0

Published

Simple route builder generator for Next.js

Downloads

11

Readme

next-scout 🕵️

next-scout is a simple tool (command) that allows you to generate a strictly typed route builder for Next.js applications.

Note
Supports both the new app directory (Next.js 13+) as well as the “legacy” pages directory.

npm version

What is a route builder?

A route builder (as generated by next-scout) is a nested JavaScript object that mirrors the page structure of your Next.js application.

For example, imagine an application with the following structure:

  • / (root page, index)
  • /blog
  • /blog/[pid]
  • /contact

The route builder of this application generated by next-scout would look like this:

type RouteBuilder = { 
  getPath: () => string; // Returns "/"
  blog: {
    getPath: () => string; // Returns "/blog"
    pid: {
      getPath: (pid: string) => string; // Returns "/blog/${pid}"			
    }
  },
  contact: {
    getPath: () => string; // Returns "/contact"		
  }
}

Why do I need a route builder?

While it is true that a route builder is primarily helpful for large-scale applications with tens or hundreds of routes, no obstacles are preventing you from using it on smaller applications which can also benefit from the advantages described below.

Auto-complete

You don’t have to remember every route in your application. A route builder is a nested object with keys and parameters mirroring the actual structure of your application, so modern code editors will give you suggestions just as you type.

<Link href={`/blog`} />; // ❌
<Link href={`/blog/${post.id}`} />; // ❌

<Link href={routeBuilder.blog.getPath()} />; // ✅
<Link href={routeBuilder.blog.pid.getPath(post.id)} />; // ✅

Type safety

Because a route builder generated by next-scout is strictly typed, every time a route is changed (file or query parameter renamed, moved, or deleted), you get TypeScript errors during the build. This also makes it super easy to refactor old routes, as you will be notified of every wrong usage of the route builder.

Installation

npm install next-scout
# or
yarn add next-scout

Usage

Warning
next-scout has to be run in the root directory of your Next.js application (the folder that contains pages and/or app directories).

next-scout
# or
next-scout --output ./lib/routeBuilder.ts

The --output specifies the file to which the next-auth will generate the route builder.