Accepts an object where keys are plugin names and values are plugin object definition, it proxies each to the fluxapp.registerPlugin method.

/**
 * @param {Object} plugins
 */
fluxapp.registerPlugins({
  pluginOne: definitionOne,
  pluginTwo: definitionTwo
});

For more information see Plugins

👍

On to registerPlugin(name, plugin)