
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.
extricate-loader
Advanced tools
Webpack loader to extract content from the bundle.
A fork of extract-loader, which will better serve your needs if you only want to extract HTML or CSS.
npm install --save-dev extricate-loader
By default, extricate-loader will resolve all require() expressions with Webpack's internal module loader and substitute the resolved values asynchronously.
If you supply a regexp for the resolve option, any path that matches will be required synchronously with Node's native require().
This means that none of your Webpack loaders will apply.
This is necessary for css-loader to work, since it requires a helper module.
All .js files: extricate-loader?resolve=\\.js$
webpack.config.js:
module.exports = {
entry: 'manifest.json',
module: {
rules: [
{
test: /\.json$/,
use: [
{ loader: 'file-loader', options: { name: '[name].[ext]' } },
{ loader: 'extricate-loader' },
{ loader: 'interpolate-loader' }
]
},
{
test: /\.css$/,
use: [
{ loader: 'file-loader' },
{ loader: 'extricate-loader', options: { resolve: '\\.js$' } },
{ loader: 'css-loader' }
]
},
{ test: /\.js$/, use: ['entry-loader'] },
{ test: /\.png$/, use: ['file-loader'] }
]
}
// ...
};
manifest.json:
{
"scripts": "{{app.js}}",
"css": "{{main.css}}"
}
main.css:
body {
background: url(bg.png);
}
manifest.json:
{
"scripts": "e43b20c069c4a01867c31e98cbce33c9.js",
"css": "0dcbbaa701328a3c262cfd45869e351f.css"
}
0dcbbaa701328a3c262cfd45869e351f.css:
body {
background: url(7c57758b88216530ef48069c2a4c685a.png);
}
Unlicense
FAQs
Webpack loader to extract content from the bundle.
We found that extricate-loader 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.