next-routes-list
v1.2.0
Published
generate next all routes list
Downloads
7,702
Maintainers
Readme
next-routes-list
Easy generate all available routes in Next.js .
Support
- [x] App routes
- [x] Page routes
Install
npm install --save-dev next-routes-list@latest
Usage
1. Run script
add script to package.json
:
{
"script": {
"generate-next-routes-list": "generate-next-routes-list"
}
}
If you use src
directory:
{
"script": {
"generate-next-routes-list": "cd src && npx generate-next-routes-list"
}
}
then run npm script:
npm run generate-next-routes-list
2. Import routes
import { routes } from "next-routes-list";
console.log(routes);
/**
[
'/',
'/about',
'/posts/[id]',
...
]
*/
Options
| Option | Type | Description | Example |
| ------ | ------ | ------------------------------- | -------------------------------------------- |
| -o
| string | set the output routes file path | npx generate-next-routes-list -o routes.ts
|
Example
next projct is here, generate result is: here.
Contribute
feel free to contribute anything or report any issues.