
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
inline-file-webpack-plugin
Advanced tools
This plugin allows you to directly inject files into Webpack's output after all processing has finished. This is particularly useful when concatenating multiple files that were created via the Extract Text Plugin such as CSS and SVG files.
const InlineFileWebpackPlugin = require('inline-file-webpack-plugin');
module.exports = {
// ...
plugins : [
// ...
new InlineFileWebpackPlugin({
input : './build/index.html', // The file in which to look for inlined paths
output : './build/final.html', // Optional - The output file (defaults to overwriting the input file)
root_path : './build' // Optional - The root directory from which inlined paths are resolved (defaults to the directory of the input file)
prefix : '[[[', // Optional - The prefix for inlined paths (defaults to '[[[')
suffix : ']]]', // Optional - The suffix for inlined paths (defaults to ']]]')
callbacks : { // Optional - A map of callbacks based on filepath
'icons.svg' : contents => contents.replace(/foo/g, 'bar'),
'../other.css' : contents => contents.replace(/bold/g, 'normal'),
},
}),
],
};
This HTML file could possibly be generated using the HTML Webpack Plugin. The style.css and icons.svg could be generated using the Extract Text Plugin.
<!DOCTYPE html>
<html>
<head>
<title>Example</title>
<style>[[[style.css]]]</style>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
[[[icons.svg]]]
</defs>
</svg>
</body>
</html>
FAQs
Inject file contents into Webpack's output
We found that inline-file-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.