webpack-inject-plugin

A webpack plugin to dynamically inject code into the bundle.
Usage
# webpack.config.js
const InjectPlugin = require('webpack-inject-plugin');
module.exports = {
plugins: [
new InjectPlugin(function() {
return "console.log('Hello World');"
});
]
};
This webpack plugin accepts a single argument, a function to which returns the code to inject into the bundle.
The function is called using the same context as the loader, so everything here applies.
You can either return the raw content to load, or a Promise
which resolves to the content, if you wish to be async.
Though this could be used as a standalone plugin, you could also use it to create other webpack plugins, such as injecting code into the build based on a config file.
Example:
import InjectPlugin from 'webpack-inject-plugin';
function customLoader(options) {
return () => {
return "console.log('My custom code generated from `options`');"
}
}
export default class MyPlugin {
constructor(options) {
this.options = options;
}
apply(compiler) {
compiler.apply(new InjectPlugin(customLoader(this.options)));
}
}