https://github.com/funnyhcat-dotcom/route-map-lite
Scan source code and generate a simple API route map.
https://github.com/funnyhcat-dotcom/route-map-lite
api cli developer-tools express fastify markdown nextjs nodejs routes
Last synced: 1 day ago
JSON representation
Scan source code and generate a simple API route map.
- Host: GitHub
- URL: https://github.com/funnyhcat-dotcom/route-map-lite
- Owner: funnyhcat-dotcom
- License: other
- Created: 2026-06-28T23:27:54.000Z (1 day ago)
- Default Branch: main
- Last Pushed: 2026-06-28T23:28:00.000Z (1 day ago)
- Last Synced: 2026-06-29T00:06:06.623Z (1 day ago)
- Topics: api, cli, developer-tools, express, fastify, markdown, nextjs, nodejs, routes
- Language: JavaScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# route-map-lite
Scan source code and generate a simple API route map.
Use it to understand a codebase quickly, document API endpoints, review route changes, or create a `ROUTES.md` table for a README.
## Quick start
```bash
npx route-map-lite .
```
```bash
# JSON for automation
npx route-map-lite src --format json
# write docs
npx route-map-lite . --output ROUTES.md
```
## Detects
- Express-style `app.get('/path')`, `router.post('/path')`
- Fastify `fastify.get('/path')`
- Fastify `fastify.route({ method, url })`
- Next.js Pages API files under `pages/api`
- Next.js App Router API files under `app/api/**/route.ts`
## Example output
| Method | Path | Framework | Source |
|---|---|---|---|
| GET | `/health` | express | server.js:3 |
| POST | `/users` | express | server.js:4 |
## License
MIT