expressvisualizer
v0.0.1
Published
Pathfinder-UI
Downloads
1
Readme
Pathfinder-UI
=========
Pathfinder-UI is a tool that allows you to visualize and test the routes in an express application.
Installation
npm install pathfinder-ui --save
Usage
var pfUI = require('pathfinder-ui')
This line attaches the Pathfinder interface to your express app. Place it before your routes/routers/middlewares
app.use('yourCustomPath', pfUI.router)
This function grabs your express routes and passes the data to our angular app Place this line after all of your routes/routers/middlewares.
pfUI(app);
You access the interface by going to localhost:PORT/yourCustomPath