• Stars
    star
    132
  • Rank 274,205 (Top 6 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 8 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Display all your express routes in the terminal!

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');
  });

More Repositories

1

paper_trail

Track and record all the changes in your database with Ecto. Revert back to anytime in history.
Elixir
557
star
2

eth

Ethereum utilities for Elixir
Elixir
118
star
3

mber

Fast and minimal Ember.js CLI alternative, without broccoli.
JavaScript
33
star
4

qunitx

Worlds first JS/TS universal automated testing framework for any JavaScript/TypeScript runtime(s), only one to my knowledge.
JavaScript
30
star
5

memoria

Single JS/TS ORM for frontend, backend & in-memory testing. Based on typeorm API, allows you to change adapters: MemoryAdapter, RESTAdapter, SQLAdapter etc.
TypeScript
18
star
6

mnemonic

Elixir library for generating deterministic private keys from words according to BIP39 standard.
Elixir
16
star
7

async.nvim

Worlds first fully working JS Promise implementation for lua/Neovim. Also a callback utility module to control higher-order async callback functions in lua. Lua port of async npm library, adjusted
Lua
14
star
8

emberx

Ember like router and libraries for glimmer.js
TypeScript
10
star
9

memserver

JS http mock server AND ORM/in-memory/in-js-vm DB you can run in-browser and node environments. Extremely useful library for fast frontend tests, rapid prototyping and single-file SPA demo deployments.
JavaScript
7
star
10

aes256

AES256 implementation in Elixir
Elixir
7
star
11

glimmer-embedded

Experimenting with glimmer-vm
JavaScript
5
star
12

mirage-glue

Mirage Fixtures > Factories for deterministic tests. This program reads your API endpoint and creates or appends response to relevant mirage fixture file(s).
JavaScript
4
star
13

mber-rust

Rust port of mber
Rust
4
star
14

nvim

my made-to-measure nvim config
Vim Script
3
star
15

qunitx-cli

CI browser runner for qunitx test framework
JavaScript
3
star
16

recursive-lookup

Dependency-free and fast async recursive fs lookups in node.js
JavaScript
2
star
17

riotjs-redux-experiment

Over-engineered to the max repo with lots of experiments
JavaScript
2
star
18

helman

Kubernetes Helm <> Kustomize bridge
JavaScript
1
star
19

nycda-backend-exam

1
star
20

nycda-chat-app

JavaScript
1
star
21

concurrent-elixir-examples

From Programming Elixir 1.2
Elixir
1
star
22

.dotfiles

Shell
1
star
23

fixturist

Fix the foreign-key constraints in your fixture driven backend tests. This library is an algorithm for populating relationships from your development database
Elixir
1
star
24

browser-inputs

fast and mature user input helpers for qunit, extracted from ember
TypeScript
1
star
25

moses

one <script> tag that turns your frontend framework into a styleguide:
CSS
1
star
26

github-issues-tracker-elixir

Taken from Programming Elixir 1.2
Elixir
1
star
27

mber-head

ember-cli-head fork that supports module unification for mber
JavaScript
1
star