Socket
Socket
Sign inDemoInstall

fastify-plugin

Package Overview
Dependencies
1
Maintainers
2
Versions
40
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fastify-plugin

Plugin helper for Fastify


Version published
Weekly downloads
1.6M
decreased by-7.96%
Maintainers
2
Install size
80.4 kB
Created
Weekly downloads
 

Package description

What is fastify-plugin?

The fastify-plugin npm package is designed to facilitate the creation of plugins for the Fastify web framework. It ensures that plugins adhere to specific conventions and are compatible with the Fastify ecosystem. This package helps in encapsulating functionality, adding hooks, decorators, and more, in a way that's easily reusable across different Fastify projects.

What are fastify-plugin's main functionalities?

Plugin Creation

This feature allows developers to create a Fastify plugin. The code sample demonstrates how to use fastify-plugin to decorate the Fastify instance with a new function called 'utility'.

const fp = require('fastify-plugin');

async function myPlugin (fastify, options) {
  fastify.decorate('utility', () => 'something useful');
}

module.exports = fp(myPlugin);

Plugin Options

This feature enables passing options to the plugin, including specifying Fastify version compatibility. The code sample shows how to pass data through options and use it within the plugin.

const fp = require('fastify-plugin');

async function myPlugin (fastify, options) {
  fastify.decorate('usefulData', options.data);
}

module.exports = fp(myPlugin, { name: 'myPlugin', fastify: '3.x' });

Encapsulation

This feature ensures that the plugin does not encapsulate its context, allowing the decorators, hooks, and changes made by the plugin to be available in the parent scope. The code sample demonstrates registering another plugin within a fastify-plugin, ensuring dependencies are managed.

const fp = require('fastify-plugin');

async function myPlugin (fastify, options) {
  fastify.register(require('some-other-plugin'), options);
}

module.exports = fp(myPlugin, { dependencies: ['some-other-plugin'] });

Other packages similar to fastify-plugin

Readme

Source

fastify-plugin

Greenkeeper badge

js-standard-style Build Status

fastify-plugin is a plugin helper for Fastify.

When you build plugins for Fastify and you want that them to be accessible in the same context where you require them, you have two ways:

  1. Use the skip-override hidden property
  2. Use this module

Usage

fastify-plugin can do three things for you:

  • Add the skip-override hidden property
  • Check the bare-minimum version of Fastify
  • Pass some custom metadata of the plugin to Fastify

Example:

const fp = require('fastify-plugin')

module.exports = fp(function (fastify, opts, next) {
  // your plugin code
  next()
})

Metadata

In addition if you use this module when creating new plugins, you can declare the dependencies, the name and the expected Fastify version that your plugin needs.

Fastify version

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

const fp = require('fastify-plugin')

module.exports = fp(function (fastify, opts, next) {
  // your plugin code
  next()
}, { fastify: '1.x' })

If you need to check the Fastify version only, you can pass just the version string.

You can check here how to define a semver range.

Name

Fastify uses this option to validate dependency graph. On one hand it makes sure that no name collision occurs. On the other hand it makes possible to perform dependency check.

const fp = require('fastify-plugin')

function plugin (fastify, opts, next) {
  // your plugin code
  next()
}

module.exports = fp(plugin, {
  fastify: '1.x',
  name: 'your-plugin-name'
})
Dependencies

You can also check if the plugins and decorators which your plugin intend to use are present in the dependency graph.

Note: This is the point where registering name of the plugins become important, because you can reference plugin dependencies by their name.

const fp = require('fastify-plugin')

function plugin (fastify, opts, next) {
  // your plugin code
  next()
}

module.exports = fp(plugin, {
  fastify: '1.x',
  decorators: {
    fastify: ['plugin1', 'plugin2'],
    reply: ['compress']
  },
  dependencies: ['plugin1-name', 'plugin2-name']
})

Acknowledgements

This project is kindly sponsored by:

License

Licensed under MIT.

Keywords

FAQs

Last updated on 19 Dec 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc