Gathering detailed insights and metrics for autoprefixer
Gathering detailed insights and metrics for autoprefixer
Gathering detailed insights and metrics for autoprefixer
Gathering detailed insights and metrics for autoprefixer
Parse CSS and add vendor prefixes to rules by Can I Use
npm install autoprefixer
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (62.98%)
CSS (37.02%)
Total Downloads
5,305,886,311
Last Day
4,689,677
Last Week
25,827,994
Last Month
110,157,425
Last Year
1,088,087,680
MIT License
21,885 Stars
2,648 Commits
1,259 Forks
374 Watchers
4 Branches
190 Contributors
Updated on May 09, 2025
Minified
Minified + Gzipped
Latest Version
10.4.21
Package Id
autoprefixer@10.4.21
Unpacked Size
194.52 kB
Size
45.35 kB
File Count
83
NPM Version
10.9.2
Node Version
22.14.0
Published on
Mar 09, 2025
Cumulative downloads
Total Downloads
Last Day
47.9%
4,689,677
Compared to previous day
Last Week
6.1%
25,827,994
Compared to previous week
Last Month
3.3%
110,157,425
Compared to previous month
Last Year
8.9%
1,088,087,680
Compared to previous year
1
PostCSS plugin to parse CSS and add vendor prefixes to CSS rules using values from Can I Use. It is recommended by Google and used in Twitter and Alibaba.
Write your CSS rules without vendor prefixes (in fact, forget about them entirely):
1::placeholder { 2 color: gray; 3} 4 5.image { 6 background-image: url(image@1x.png); 7} 8@media (min-resolution: 2dppx) { 9 .image { 10 background-image: url(image@2x.png); 11 } 12}
Autoprefixer will use the data based on current browser popularity and property support to apply prefixes for you. You can try the interactive demo of Autoprefixer.
1::-moz-placeholder { 2 color: gray; 3} 4::placeholder { 5 color: gray; 6} 7 8.image { 9 background-image: url(image@1x.png); 10} 11@media (-webkit-min-device-pixel-ratio: 2), 12 (min-resolution: 2dppx) { 13 .image { 14 background-image: url(image@2x.png); 15 } 16}
Twitter account for news and releases: @autoprefixer.
Read full docs here.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
4 commit(s) and 6 issue activity found in the last 90 days -- score normalized to 8
Reason
Found 4/30 approved changesets -- score normalized to 1
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-04-28
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More