JSPM

hyper-plugin-extend

1.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q36135F
  • License MIT

Allows hyper plugins to integrate with each other.

Package Exports

  • hyper-plugin-extend

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hyper-plugin-extend) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

hyper-plugin-extend

Allows hyper plugins to integrate with each other.

Usage

Place the following in the main JavaScript file for each sub-plugin:

var registerSubPlugin = require('hyper-plugin-extend').registerSubPlugin;
var SomePluginClass = require('./somePluginClass.js').SomePluginClass;
exports.onRendererWindow = registerSubPlugin('<SOME PLUGIN NAME>', SomePluginClass, /* Optionally, you can place a callback here that is executed after plugin registration. */);

Place the following in the main JavaScript file for the parent plugin:

var registerParentPlugin = require('hyper-plugin-extend').registerParentPlugin;
exports.onRendererWindow = registerParentPlugin('<SOME PLUGIN NAME>', PluginClass => { /* do something */ })

To access a list of all loaded sub-plugins later, do the following:

var getSubPlugins = require('hyper-plugin-extend').getSubPlugins
getSubPlugins('<SOME PLUGIN NAME>', /* You can pass in the renderer window here. Otherwise, it's assumed to be 'window' in the global scope. */) // This returns an array of plugin classes

getSubPlugins relies on the renderer window.