Socket
Socket
Sign inDemoInstall

hemera-plugin

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hemera-plugin

This is a plugin helper for hemera


Version published
Weekly downloads
3.9K
decreased by-25.1%
Maintainers
1
Weekly downloads
 
Created
Source

Hemera-plugin package

npm js-standard-style

hemera-plugin is a plugin helper for Hemera.

Usage

hemera-plugin can do some things for you:

  • Check the bare-minimum version of Hemera
  • Provide consistent interface to register plugins even when the api is changed

Example:

const hp = require('hemera-plugin')

module.exports = hp(function (opts, next) {
  // your plugin code
  const hemera = this
  next()
})

If you need to set a bare-minimum version of Hemera for your plugin, just add the semver range that you need:

const hp = require('hemera-plugin')

module.exports = hp(function (opts, next) {
  // your plugin code
  const hemera = this
  next()
}, '0.x')

You can check here how to define a semver range.

Credits

fastify-plugin

FAQs

Package last updated on 20 Jun 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