
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
postcss-prefixer-keyframes
Advanced tools
PostCSS plugin to prefix keyframes.
/* Input example */
@keyframes mymove {
from {top: 0px;}
to {top: 200px;}
}
div {
width: 100px;
background: red;
position: relative;
animation: mymove 5s infinite;
}
a {
color: green;
position: relative;
animation: externalanimation 5s infinite;
}
/* Output example */
@keyframes myWebsite-mymove {
from {top: 0px;}
to {top: 200px;}
}
div {
width: 100px;
background: red;
position: relative;
animation: myWebsite-mymove 5s infinite;
}
a {
color: green;
position: relative;
animation: externalanimation 5s infinite;
}
var prefix = require('postcss-prefixer-keyframes');
postcss([ prefix({prefix: 'myWebsite-'}) ])
See PostCSS docs for examples for your environment.
FAQs
PostCSS plugin to prefix keyframes
We found that postcss-prefixer-keyframes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.