New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

blipp

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blipp

blipp is a simple hapi plugin to display the routes table at startup

  • 4.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8.6K
increased by30.03%
Maintainers
1
Weekly downloads
 
Created
Source

blipp build

blipp is a simple hapi plugin to display the routes table to console at startup. It organizes the display per connection so if you have multiple connections you can easily ensure that you've done your routing table correctly. This can be difficult to see otherwise.

image

Usage (Hapi v17)

Register like any other plugin

See examples for examples

Options

The following options are available:

  • showAuth: Shows any hapi authentication scheme using server.auth.strategy. Default: false
  • showScope: Shows route access rules using route.options.auth.access.scope. Default: false
  • showStart: Shows route information during startup of server. Default: true

The module also registers the 'info()' and 'text()' API methods:

console.log(server.plugins.blipp.info());
console.log(server.plugins.blipp.text());
var json = JSON.stringify(server.plugins.blipp.info());

With showAuth:

image

Versions

  • 1.x = hapi 7.x
  • 2.x = hapi 8.x
  • 3.x = hapi 17.x
  • 4.x = hapi 18.x

Keywords

FAQs

Package last updated on 20 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc