Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@zsviczian/rollup-plugin-postprocess
Advanced tools
Find-and-replace postprocessing for Rollup output.
Apply regex find-and-replace postprocessing to your Rollup bundle.
npm i -D rollup-plugin-postprocess
Works just like a JavaScript String replace, including the funtion callback option.
postprocess()
expects an Array of [(RexExp) find, (String|Function) replace]
pairs. Alternatively, if a function is provided, it will be invoked for each bundle and can return said pairs.
import postprocess from 'rollup-plugin-postprocess';
export default {
plugins: [
postprocess([
[/\b(module\.exports=|export default )([a-zA-Z])/, '$1$2']
])
]
}
This example is more practical. Rollup places exports at the end of your bundle, which can often create single-use variables that Uglify does not collapse. Let's implement a find & replace that "moves" the export inline to save some bytes.
In this example, we'll make use of the fact that find/replacement pairs are executed in sequence. The first pair is used both to remove the existing export statement and to find the export type & identifier. By the time the second find/replace pair is processed, it can make use of the values found in the first pass.
import postprocess from 'rollup-plugin-postprocess';
let name, exportPrefix;
export default {
plugins: [
postprocess([
[
/(module\.exports\s*=\s*|export\s*default\s*)([a-zA-Z$_][a-zA-Z0-9$_]*)[;,]?/,
(str, prefix, id) => {
name = id;
exportPrefix = prefix;
// returning nothing is the same as an empty string
}
],
[
/^function\s([a-zA-Z$_][a-zA-Z0-9$_]*)/,
(str, id) => id==name ? `${exportPrefix} function` : str
]
])
]
};
FAQs
Find-and-replace postprocessing for Rollup output.
The npm package @zsviczian/rollup-plugin-postprocess receives a total of 10 weekly downloads. As such, @zsviczian/rollup-plugin-postprocess popularity was classified as not popular.
We found that @zsviczian/rollup-plugin-postprocess demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.