Socket
Socket
Sign inDemoInstall

hapi-compat

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hapi-compat

hapi plugin which tries to detect, warn and auto-fix Hapi 17 breaking changes


Version published
Maintainers
1
Created
Source

hapi-compat



This plugin tries to detect, warn and auto-fix Hapi 17 breaking changes which are not fixed in plugins with a best effort.

Hooks are recursive so if a plugin requires incompatible plugins, hapi-compat plugin will support them too.

What's supported?

IDAuto FixPerf ImpactDescription
ASYNC_PLUGINSYESIplugins with next callback should return a Promise now
SERVER_REGISTERYES-server.register({ register }) should be { plugin }
PLUGIN_ATTRSYES-register.attributes ~> {register, pkg}
SERVER_ONYESI* + R*server.on ~> server.events.on
ASYNC_SERVER_EXTYESISupport for server.ext where the method expects having next callback
  • Perf Impact indicates if this support impacts performance of framework (I)init or (R)untime.
  • * means only impacts perf when old code detected not newer plugins

For more details please look at breaking changes list here

Setup

Install package:

npm install hapi-compat

# or using yarn...

yarn add hapi-compat

Add plugin and push main Hapi instance as options.server to allow globally registering hooks:

// ...
const server = new Hapi.Server(....)

// ...
server.register({
    plugin: 'hapi-compat',
    options: {
        server
    }
})

Questions

  • Does this plugin magically fixes everything for migration?

    Absolutely no. This is just a helper utility for making migration easier and faster.

License

Copyright (c) 2016-2017 Fandogh - Pooya Parsa

Released under The MIT LICENSE

FAQs

Package last updated on 20 Oct 2017

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