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

next-scout

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

next-scout

Simple route builder generator for Next.js

  • 1.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

FAQs

Package last updated on 26 Nov 2022

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