All Projects → izelnakri → Express Routemap

izelnakri / Express Routemap

Licence: mit
Display all your express routes in the terminal!

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Express Routemap

Express Env Example
A sample express environment that is well architected for scale. Read about it here:
Stars: ✭ 130 (-0.76%)
Mutual labels:  express, routing
Trafficlight
🚦 Flexible NodeJS Routing Decorators for API Routing
Stars: ✭ 69 (-47.33%)
Mutual labels:  express, routing
Giraffql
Interactive GraphQL exploration tool built with React - still working on the website
Stars: ✭ 176 (+34.35%)
Mutual labels:  express, developer-tools
Gulp Develop Server
Development assistant for node.js server by gulp
Stars: ✭ 72 (-45.04%)
Mutual labels:  express, developer-tools
Express Reloadable
Automatically hot-swap Express server code without the restart
Stars: ✭ 20 (-84.73%)
Mutual labels:  express, developer-tools
Flowmaker
flowmaker: JS to SVG flowchart generation extension for Vscode in realtime written in typescript and also download the SVG through local node server. Extension:
Stars: ✭ 108 (-17.56%)
Mutual labels:  express, developer-tools
Svelte Navigator
Simple, accessible routing for Svelte
Stars: ✭ 125 (-4.58%)
Mutual labels:  routing
Hsdev
Haskell development tool
Stars: ✭ 128 (-2.29%)
Mutual labels:  developer-tools
Generator
Express' application generator
Stars: ✭ 1,644 (+1154.96%)
Mutual labels:  express
Call My Congress
DEPRECATED. Simple app that displays contact information for US Congress representatives by district.
Stars: ✭ 125 (-4.58%)
Mutual labels:  express
Graphbrainz
A fully-featured GraphQL interface for the MusicBrainz API.
Stars: ✭ 130 (-0.76%)
Mutual labels:  express
Nodejs Notes App
A web app to create notes, and save it using Mongodb, plus authentication using passport.
Stars: ✭ 130 (-0.76%)
Mutual labels:  express
Check It Out
A command line interface for Git Checkout. See branches available for checkout.
Stars: ✭ 127 (-3.05%)
Mutual labels:  developer-tools
Hot Reload All The Things
Starter project for HMR with backend routes and server/client-side react.
Stars: ✭ 127 (-3.05%)
Mutual labels:  express
Poodle
🔥 A fast and beautiful command line tool to build API requests.
Stars: ✭ 129 (-1.53%)
Mutual labels:  developer-tools
Bsdrp
BSD Router Project
Stars: ✭ 126 (-3.82%)
Mutual labels:  routing
Java Express
🧪 HTTP Framework based on expressjs, no dependencies, simple usage. Can be used to quickly spin up an API or serve local files.
Stars: ✭ 125 (-4.58%)
Mutual labels:  express
Cakebox
Framework agnostic virtual PHP Development Environment
Stars: ✭ 127 (-3.05%)
Mutual labels:  developer-tools
Typescript Express Sequelize
Easily bootstrap your NodeJS project with Express, Sequelize and Typescript 👍
Stars: ✭ 129 (-1.53%)
Mutual labels:  express
Electrode Csrf Jwt
Stateless Cross-Site Request Forgery (CSRF) protection with JWT
Stars: ✭ 127 (-3.05%)
Mutual labels:  express

Display all your express routes in the terminal!

HOW TO:

npm install express-routemap

  // 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');
  });
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].