npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

hapi-compat

v1.1.0

Published

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

Downloads

254

Readme

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?

ID | Auto Fix | Perf Impact | Description ------------------|-------------|--------------|-------------------------------------------------------------------- ASYNC_PLUGINS | YES | I | plugins with next callback should return a Promise now SERVER_REGISTER | YES | - | server.register({ register }) should be { plugin } PLUGIN_ATTRS | YES | - | register.attributes ~> {register, pkg} SERVER_ON | YES | I* + R* | server.on ~> server.events.on ASYNC_SERVER_EXT | YES | I | Support 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