Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
postcss-prefixwrap
Advanced tools
A PostCSS plugin that is used to wrap css styles with a css selector to constrain their affect on parent elements in a page.
v0.0.5
A PostCSS plugin that is used to wrap css styles with a css selector to constrain their affect on parent elements in a page.
0. Ensure all Dependencies have been resolved.
1. Install the Node module:
npm install --save-dev postcss-prefixwrap
2. Load the module in your build configuration:
var prefixwrap = require("postcss-prefixwrap");
3. Instantiate the PostCSS plugin:
// This will be a class on the container div.
var wrapSelector = ".my-custom-wrap";
// Postcss config for some workflow such as webpack.
{
postcss: [
prefixwrap(wrapSelector)
]
}
4. Add the container to your markup:
<div class="my-custom-wrap">
<!-- Your existing markup. -->
</div>
5. Your css will now be contained:
/* Before */
p {
color: red;
}
body {
font-size: 16px;
}
/* After */
.my-custom-wrap p {
color: red;
}
.my-custom-wrap {
font-size: 16px;
}
See https://travis-ci.org/dbtedman/postcss-prefixwrap for CI results, run on each commit.
Code is linted using ESLint:
npm run test:lint
FAQs
A PostCSS plugin that is used to wrap css styles with a css selector to constrain their affect on parent elements in a page.
The npm package postcss-prefixwrap receives a total of 51,147 weekly downloads. As such, postcss-prefixwrap popularity was classified as popular.
We found that postcss-prefixwrap 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.