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 🙏

© 2024 – Pkg Stats / Ryan Hefner

pluginable

v2.1.1

Published

Another plugin manager!

Downloads

7

Readme

pluginable

build status Coverage Status

A component/module/plugin loader

Installation

npm install pluginable --save

Usage

var pluginable = require('pluginable')

glob('./**/pluginable.js', funcion (error, files) {
  var pluginLoader = pluginable(files)

  pluginLoader.load(function (error) {
    console.log('Plugins loaded')
  })
})

Plugin Interface

module.exports = function theName(cb) {
  console.log('this is called on load')

  cb(null)
}

Dependencies

These can be inferred from the function arguments

module.exports = function theName(db, userService, app, cb) {
  console.log(db, userService, app)
}

Instances

These are returned within the function via an async callback(error, instance). This is then what another plugin will be given if it is dependent on it based on the function name.

Async

module.exports = function theName(db, cb) {
  cb(null, { test: 'hello' })
}

The last argument of your function will always be assumed to be the callback(error, [instance])

Note: The plugin will only be registered if the returned instance is truey

Events

Registered before pluginable is initialised, or within a plugin itself via on or once.

Only emitted if no errors, e.g. an afterLoad will not emit if a plugin returns an error.

var pluginable = require('pluginable')
var pluginLoader = pluginable(files)

pluginLoader.on('beforeLoad', function (plugin) {
  console.log(plugin.name)
})

pluginLoader.load(function (error) {
  console.log('Plugins loaded')
})
module.exports = function pluginName() {
  this.on('eventName', function () { })
}
  • beforeLoad(plugin) - Emitted before each plugin is loaded.

  • beforeLoad:pluginName(plugin) - Emitted before the specified plugin is loaded.

  • afterLoad(plugin, instance) - Emitted after each plugin is loaded.

  • afterLoad:pluginName(plugin, instance) - Emitted after the specified plugin is loaded.

  • beforeFinished(pluginInstances) - Emitted before the pluginable callback is called.

  • afterFinished(pluginInstances) - Emitted after the pluginable callback is called.

What if...

I want to access other plugins but not be dependent on them?

module.exports = function theName(db, cb) {
  // Will output instance value of 'test' if present
  console.log(this.plugins.test)
  cb(null, { test: 'hello' })
}
module.exports.softDepend = [ 'test' ]

I want to clear the plugins?

Pluginable is newless OO. Allowing the reference to be garbage collected should suffice.

I want to dynamically load a plugin before startup?

var pluginLoader = require('pluginable')(files)
pluginLoader.registerBeforeLoad(function test(cb) { cb() })

pluginLoader.load(function (error, plugins) {
  console.log(error, plugins)
})

This allows you to register plugins for use with a dependency before executing load(), for example a logger instance.

I want to use this pattern with other functions after load?

var pluginLoader = require('pluginable')(files)

pluginLoader.load(function (error, plugins) {
  var fn = pluginLoader.bond(function hello(pluginA, pluginB) {
    console.log(pluginA, pluginB)
  })

  fn()
})

Note, bond will throw an error if a dependency is unmet.

I have plugins with circular dependencies?

Pluginable will return an error stating which plugins are affected and will not continue until it is solved.

I have a plugin dependency that isn't present?

Pluginable will return an error stating which dependency is missing and from which plugin.

I try to break it?

Pluginable tries to validate plugins before loading or using them. If you're really evil and come across a scenario that isn't covered, feel free to open an issue.