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.
A PostCSS plugin that is used to wrap css styles with a css selector to constrain their affect on parent elements in a page.
These instructions are only for this plugin, see PostCSS website for framework information.
1. Install the plugin.
npm install --save-dev postcss-prefixwrap
2. Add to your PostCSS configuration.
var gulp = require('gulp');
var postcss = require('gulp-postcss');
var prefixwrap = require("postcss-prefixwrap"); // The require for PostCSS Prefix Wrap.
gulp.task("css", function () {
var processors = [
prefixwrap(".my-custom-wrap")
];
return gulp.src("./src/*.css")
.pipe(postcss(processors))
.pipe(gulp.dest("./dest"));
});
The above example is using Gulp.js, and is based on https://github.com/postcss/gulp-postcss README.md.
3. Add the container to your markup.
<div class="my-custom-wrap">
<!-- Your existing markup. -->
</div>
4. View your css, now prefix wrapped.
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.
Linting support provided by ESLint based on rules defined in .eslintrc.yml
.
npm run test:lint
Code is unit tested using MochaJS.
npm run test:unit
Based on the NPM Publishing Guide, after updating the current version, run the following command:
npm publish
Created Down Under by Daniel Tedman and Jeff Teng with contributions from around the web.
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.