@gasket/plugin-dynamic-plugins
Gasket plugin for dynamically adding plugins to Gasket
Installation
npm i @gasket/plugin-dynamic-plugins
Update your gasket
file plugin configuration:
// gasket.js
+ import pluginDynamicPlugins from '@gasket/plugin-dynamic-plugins';
export default makeGasket({
plugins: [
+ pluginDynamicPlugins
]
});
Usage
This plugin gives you the option to dynamically add plugins to Gasket after the core Gasket instance has been created.
This is can be useful when you want to add plugins to Gasket only in specific environments.
For example, if you have plugins for docs creation (@gasket/plugin-docs
, @gasket/plugin-docusarus
) that are only needed for development purposes and do not need to be included in your production code, you can dynamically load them into Gasket only when doing development locally through this plugin. You could then add plugins designated only for development to you devDependencies
in your package.json
file.
If you want to wait until dynamic plugins have been loaded into the Gasket instance before running app code, you can do so by checking if the isReady
property on the Gasket instance has been resolved.
import gasket from './gasket.js';
gasket.isReady.then(() => {
gasket.actions.startServer();
});
Configuration
To specify which plugins to load dynamically, add a dynamicPlugins
key to your gasket
file with a value of an array of strings containing the plugin names you want to add.
// gasket.js
export default makeGasket({
+ dynamicPlugins: [
+ '@gasket/plugin-foo',
+ '@gasket/plugin-bar'
+ ]
});
Environments
This plugin can utilize sub-environments to determine which plugins to load dynamically. To specify which sub-environment to use, set the GASKET_ENV
environment variable to the desired sub-environment and then add the sub-environment configuration to the gasket
file.
For example if you wanted to load the @gasket/plugin-docs
and @gasket/plugin-docusaurus
plugins only when running the docs
script, you could set the GASKET_ENV
variable to local.docs
in your package.json
file.
"docs": "GASKET_ENV=local.docs node gasket.js docs"
In your gasket
file, you would then specify the plugins to load for the local.docs
sub-environment.
makeGasket({
environments: {
local: { ... },
'local.docs': {
dynamicPlugins: [
'@gasket/plugin-docs',
'@gasket/plugin-docusaurus'
]
}
}
})
How it works
This plugin hooks the prepare lifecycle to add dynamic plugins to the Gasket instance.
In the prepare
hook, plugins specified in the dynamicPlugins
configuration are registered to the Gasket instance. The init
and configure
lifecycles are then executed exclusively for the newly added dynamic plugins.