Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
processor-loader
Advanced tools
`processor-loader` is a webpack loader that can apply any string processing functions to loaded source. It could be useful when you need to prepare source code before passing it to another loader and you don't want to write webpack loaders for each of thi
processor-loader
is a webpack loader that can apply any string processing functions to loaded source. It could be useful when you need to prepare source code before passing it to another loader and you don't want to write webpack loaders for each of this cases.
Example use cases:
css-loader
$
but you want it to use window.jQuery
instead.npm install processor-loader --save-dev
Each processor is just a simple function that takes string with source and returns string with processed source. You can have as many processors as you want and you can choose individual processors for each case.
Example webpack configuration:
module.exports = {
module: {
loaders: [
{
test: /\.js$/,
loaders: ["babel", "processor?replaceImage,changeLicense"],
},
{
test: /\.scss?$/,
loaders: ["style", "css", "postcss", "processor?fixCSSPaths", "sass"]
}
]
},
processors: {
fixCSSPaths: function (source) {
return source.replace(/..\/..\/assets\/lib\//g, "../assets/");
},
replaceImage: function (source) {
return source.replace(/myImage.gif/g, "myImage.png");
},
changeLicense: function (source) {
return source.replace(/MIT/g, "BSD");
}
}
};
FAQs
`processor-loader` is a webpack loader that can apply any string processing functions to loaded source. It could be useful when you need to prepare source code before passing it to another loader and you don't want to write webpack loaders for each of thi
We found that processor-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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.