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 newapp
directory (Next.js 13+) as well as the “legacy”pages
directory.
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"
}
}
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.
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)} />; // ✅
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.
npm install next-scout
# or
yarn add next-scout
Warning
next-scout
has to be run in the root directory of your Next.js application (the folder that containspages
and/orapp
directories).
# to generate the route builder with default settings
next-scout
# or to specify the output file
next-scout --output ./lib/routeBuilder.ts
# or to include trailing slash in generated paths
next-scout --output ./lib/routeBuilder.ts --trailing-slash
- The
--output
specifies the file to which thenext-scout
will generate the route builder. - The
--trailing-slash
flag enables the setting to include a trailing slash in generated paths.