UNPKG

routender

Version:

An npm package to automatically detect and list all router endpoints in your application.

12 lines (11 loc) 339 B
// src/detectors/index.js const expressDetector = require('./express-detector'); const nextjsDetector = require('./nextjs-detector'); const fastifyDetector = require('./fastify-detector'); const koaDetector = require('./koa-detector'); module.exports = [ expressDetector, nextjsDetector, fastifyDetector, koaDetector ];