1.2.0 • Published 1 year ago
next-routes-list v1.2.0
next-routes-list
Easy generate all available routes in Next.js .
Support
- App routes
- Page routes
Install
npm install --save-dev next-routes-list@latestUsage
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-list2. 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.
1.2.0
1 year ago
1.2.0-alpha.0
1 year ago
1.1.3-alpha.1
2 years ago
1.1.1
2 years ago
1.0.2
2 years ago
1.1.0
2 years ago
1.0.1
2 years ago
1.1.3-alpha.3
2 years ago
1.1.3-alpha.2
2 years ago
1.1.5
2 years ago
1.1.4
2 years ago
1.1.3
2 years ago
1.1.2
2 years ago
1.1.3-alpha.4
2 years ago
1.0.0
2 years ago
0.0.1
2 years ago