Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/izelnakri/express-routemap

Display all your express routes in the terminal!
https://github.com/izelnakri/express-routemap

developer-tools express node routing

Last synced: 13 days ago
JSON representation

Display all your express routes in the terminal!

Awesome Lists containing this project

README

        

# Display all your express routes in the terminal!

![](http://g.recordit.co/PhGRKSCZjL.gif)

# HOW TO:

```npm install express-routemap```

```js
// in your index.js:

const express = require('express'),
displayRoutes = require('express-routemap');

var app = express();

var adminRouter = require('./routes/admin');

app.use('/admin', adminRouter);

app.get('/', (req, res) => {
res.render('index');
});

app.listen(3000, () => {
console.log('Web server started at port 3000!');
// HERE IS THE FUN PART:
displayRoutes(app);

// or use like this
displayRoutes(app, 'route-table.log');
});
```