A webpack plugin that replaces the standard webpack chunkhash with an MD5 hash based on the chunk's module contents. The latest version (0.0.6) was released with a low-release cadence, no recent updates or maintenance. It's a minimal alternative to webpack's built-in chunkhash, offering deterministic MD5 hashing and supporting older webpack versions. Requires Node.js and webpack. Not actively maintained; consider using webpack's own [contenthash] or other modern hashing plugins.
npm install webpack-md5-hashVerified import paths — ran on the pinned version, not inferred.
Shows how to add the plugin to a webpack configuration to replace chunkhash with MD5.
Use webpack's built-in [contenthash] or a more modern hashing plugin like webpack-hash-webpack-plugin.
Use require() in CommonJS context; for ESM projects, consider an alternative plugin with ESM support.
Check compatibility with your webpack version; for webpack 5, use [contenthash] instead.
Ensure output.filename or output.chunkFilename contains [chunkhash].
Run 'npm install webpack-md5-hash --save-dev' to install the package.
Use 'var WebpackMd5Hash = require('webpack-md5-hash');' instead of import statement.Add [chunkhash] to output.filename or output.chunkFilename, e.g., '[name].[chunkhash].js'.