
Research
Malicious npm Package Brand-Squats TanStack to Exfiltrate Environment Variables
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.
postcss-flexbugs-fixes
Advanced tools
PostCSS plugin This project tries to fix all of flexbug's issues
PostCSS plugin This project tries to fix all of flexbug's issues.
.foo { flex: 1; }
.bar { flex: 1 1; }
.foz { flex: 1 1 0; }
.baz { flex: 1 1 0px; }
.foo { flex: 1 1; }
.bar { flex: 1 1; }
.foz { flex: 1 1; }
.baz { flex: 1 1; }
.foo { flex: 1; }
.foo { flex: 1 1 0%; }
This only fixes css classes that have the
flexproperty set. To fix elements that are contained inside a flexbox container, use this global rule:
* {
flex-shrink: 1;
}
.foo { flex: 1 0 calc(1vw - 1px); }
.foo {
flex-grow: 1;
flex-shrink: 0;
flex-basis: calc(1vw - 1px);
}
postcss([require('postcss-flexbugs-fixes')]);
You can also disable bugs individually, possible keys bug4, bug6 and bug8a.
var plugin = require('postcss-flexbugs-fixes');
postcss([plugin({ bug6: false })]);
See PostCSS docs for examples for your environment.
Autoprefixer is a PostCSS plugin that adds vendor prefixes to CSS rules using values from Can I Use. While it does not specifically target flexbox bugs, it ensures that your CSS works across different browsers by adding necessary prefixes. It complements postcss-flexbugs-fixes by handling other cross-browser compatibility issues.
PostCSS Preset Env allows you to use future CSS features today by converting modern CSS into something most browsers can understand. It includes autoprefixer and other plugins, but it does not specifically address flexbox bugs. It is more comprehensive in terms of modern CSS features but less focused on flexbox issues compared to postcss-flexbugs-fixes.
FAQs
PostCSS plugin This project tries to fix all of flexbug's issues
The npm package postcss-flexbugs-fixes receives a total of 4,390,500 weekly downloads. As such, postcss-flexbugs-fixes popularity was classified as popular.
We found that postcss-flexbugs-fixes 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.

Research
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.

Research
Compromised SAP CAP npm packages download and execute unverified binaries, creating urgent supply chain risk for affected developers and CI/CD environments.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.