Gathering detailed insights and metrics for postcss-overflow-shorthand
Gathering detailed insights and metrics for postcss-overflow-shorthand
npm install postcss-overflow-shorthand
Typescript
Module System
Min. Node Version
Node Version
NPM Version
98.4
Supply Chain
84.2
Quality
80.4
Maintenance
100
Vulnerability
100
License
CSS (43.39%)
JavaScript (30.21%)
TypeScript (22.76%)
HTML (3.06%)
Nunjucks (0.48%)
Shell (0.1%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
1,422,134,861
Last Day
947,748
Last Week
6,666,438
Last Month
27,869,622
Last Year
289,621,950
MIT-0 License
934 Stars
4,173 Commits
73 Forks
11 Watchers
4 Branches
131 Contributors
Updated on Feb 13, 2025
Minified
Minified + Gzipped
Latest Version
6.0.0
Package Id
postcss-overflow-shorthand@6.0.0
Unpacked Size
5.98 kB
Size
2.66 kB
File Count
7
NPM Version
10.7.0
Node Version
22.1.0
Published on
Aug 03, 2024
Cumulative downloads
Total Downloads
Last Day
-23.6%
947,748
Compared to previous day
Last Week
-16.3%
6,666,438
Compared to previous week
Last Month
47.7%
27,869,622
Compared to previous month
Last Year
-12.1%
289,621,950
Compared to previous year
1
1
npm install postcss-overflow-shorthand --save-dev
PostCSS Overflow Shorthand lets you use the overflow
shorthand in CSS,
following the CSS Overflow specification.
1html { 2 overflow: hidden auto; 3} 4 5/* becomes */ 6 7html { 8 overflow-x: hidden; 9 overflow-y: auto; 10 overflow: hidden auto; 11}
Add PostCSS Overflow Shorthand to your project:
1npm install postcss postcss-overflow-shorthand --save-dev
Use it as a PostCSS plugin:
1const postcss = require('postcss'); 2const postcssOverflowShorthand = require('postcss-overflow-shorthand'); 3 4postcss([ 5 postcssOverflowShorthand(/* pluginOptions */) 6]).process(YOUR_CSS /*, processOptions */);
The preserve
option determines whether the original notation
is preserved. By default, it is preserved.
1postcssOverflowShorthand({ preserve: false })
1html { 2 overflow: hidden auto; 3} 4 5/* becomes */ 6 7html { 8 overflow-x: hidden; 9 overflow-y: auto; 10}
No vulnerabilities found.
Reason
30 commit(s) and 9 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
SAST tool detected but not run on all commits
Details
Reason
branch protection is not maximal on development and all release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 0/21 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-02-10
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