
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.
postcss-webp-processing
Advanced tools
PostCSS plugin to process all png and jpg files to webp files from a css file. This has been designed to work with webpacker and webpack
.my-background {
background: url("~image/foo.jpg") no-repeat;
}
.my-border-image {
border-image: url("~image/borders/bar.png");
}
.my-background-image {
background-image: url("~image/foobar.jpeg");
}
.my-background {
background: url("~image/foo.jpg") no-repeat;
}
.my-border-image {
border-image: url("~image/borders/bar.png");
}
.my-background-image {
background-image: url("~image/foobar.jpeg");
}
.webp .my-background {
background: url("~webp/foo.webp") no-repeat;
}
.webp .webp.my-border-image {
border-image: url("~webp/borders/bar.webp");
}
.webp .my-background-image {
background-image: url("~webp/foobar.webp");
}
postcss([
require("postcss-webp-processing")({
/* ...your config */
})
]);
or in postcss.config.js
const WebpProcessing = require("postcss-webp-processing");
module.exports = {
plugins: [
WebpProcessing({
/* ...your config */
})
]
};
| Option | Description | default |
|---|---|---|
| environments | sets the enviroments that it will be triggered, can be string 'production' or array ['staging', 'production'] | 'all', |
| imageFolder | The expected image folder | /~images/ |
| quality | Quality of webp images | 60 |
| replaceFrom | Files to replace | /.(jpe?g|png)/ |
| replaceTo | optional either function replaceTo({ file, folder, url }) or regex | N/A |
| resolvePath | Actual path to images | 'app/javascript/images' |
| webpClass: | css class to be set for webp | '.webp' |
| webpFolder | Where webp images will be generated | 'tmp/webp' |
| webpPath: | Image path to be set in css | '~webp' |
Additional webpacker config:
const { resolve } = require("path");
const { environment } = require("@rails/webpacker");
const config = require("@rails/webpacker/package/config");
environment.config.set("resolve.alias", {
images: resolve(config.source_path, "images"),
webp: resolve("tmp", "webp")
});
Additional or your webpack.config.js:
const { resolve } = require('path');
module.exports = {
mode: 'development',
entry: './foo.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'foo.bundle.js'
}
resolve.: {
alias: {
images: resolve('path/to/images', 'images'),
webp: resolve('tmp', 'webp'),
}
}
};
To set for webp, either use modernzr or use this:
function checkWebP(callback) {
var webP = new Image();
const event = () => {
callback(webP.height === 2);
};
webp.addEventListener("load", event);
webp.addEventListener("error", event);
webP.src =
"data:image/webp;base64,UklGRjoAAABXRUJQVlA4IC4AAACyAgCdASoCAAIALmk0mk0iIiIiIgBoSygABc6WWgAA/veff/0PP8bA//LwYAAA";
}
checkWebP(function(support) {
if (support) {
document.body.classList.add("webp");
} else {
document.body.classList.add("no-webp");
}
});
If you discover any bugs, feel free to create an issue on GitHub. Please add as much information as possible to help us fixing the possible bug. We also encourage you to help even more by forking and sending us a pull request.
https://github.com/djforth/postcss-webp-processing/issues
If you'd like to contribute, postcss-webp-processing is written using babel and rollup in ES6.
Please make sure any additional code should be covered in tests (Jest).
If you need to run the test please use:
yarn test
or to rebuild the JS run:
yarn build
Adrian Stainforth (https://github.com/djforth)
postcss-webp-processing is an open source project falling under the MIT License. By using, distributing, or contributing to this project, you accept and agree that all code within the @morsedigital/select-filter project are licensed under MIT license.
FAQs
PostCSS plugin to process all png and jpg files to webp
The npm package postcss-webp-processing receives a total of 14 weekly downloads. As such, postcss-webp-processing popularity was classified as not popular.
We found that postcss-webp-processing 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.