
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
appcache-webpack-plugin-client
Advanced tools
Generate an HTML5 Application Cache for a Webpack build
var AppCachePlugin = require('appcache-webpack-plugin-client');
module.exports = {
plugins: [
new AppCachePlugin({
cache: ['../dist'],
network: null, // No network access allowed!
fallback: ['index.html', 'error.html'],
settings: ['prefer-online'],
exclude: [/.*$/], // Exclude file.txt and all .js files
output: '../cache/manifest.appcache',
outpath:'', // Relative path
excludePath:'' // Remove matching file url
})
]
}
CACHE MANIFEST
# a385df8c0b9e88367403
CACHE:
../dist/0.js
../dist/0.min.js
../dist/1.js
../dist/img/culb_bg.png
../dist/index.css
../dist/index.js
../dist/index.min.js
../dist/vendor.js
../dist/vendor.min.js
../assets/img/culb_bg.jpg
../assets/img/culb_bg.png
../assets/img/culb_del.png
../assets/img/culb_dot.png
../assets/img/culb_member.png
../assets/img/culb_nav_active.png
../assets/img/culb_product.png
../assets/img/culb_tab.png
../assets/img/load.gif
../assets/img/loading.gif
../assets/img/svg/culb_dot.png
FALLBACK:
index.html
error.html
SETTINGS:
prefer-online
Arguments:
cache: An array of additional assets to cache.network: An array of assets that may be accessed via the network.
Defaults to ['*'].fallback: An array of fallback assets.settings: An array of settings.exclude: An array of strings or regex patterns. Assets in the compilation
that match any of these patterns will be excluded from the manifest.output: The filename to write the appcache tooutpath: Relative pathexcludePath: Remove file pathfixed Fixed some bug errors about empty files
MITFAQs
Generate an HTML5 Application Cache for a Webpack build
We found that appcache-webpack-plugin-client 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.