0.0.0 • Published 6 years ago

feathers-blipp v0.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

feathers-blipp

FeathersJS plugin that displays the all of the routes/services similar to blipp for Hapi.

Installation

npm install feathers-blipp --save

Usage

feathers-blipp MUST be configured AFTER services.

  const blipp = require('feathers-blipp');
  app
    .configure(middleware)
    .configure(services)
    .configure(blipp); // <<-- MUST be configured AFTER services

An options object with verbose boolean can also be passed as an argument.

  const blipp = require('feathers-blipp');
  app
    .configure(middleware)
    .configure(services)
    .configure(blipp({ verbose: true }));

Screenshots

Verbose

Alt text

Not Verbose

Alt text

Complete Example

git clone git@github.com:bsubedi26/feathers-blipp.git
cd /feathers-blipp/example
npm install
npm start

License

Copyright (c) 2017

Licensed under the MIT license.