Gathering detailed insights and metrics for postcss-overflow-shorthand
Gathering detailed insights and metrics for postcss-overflow-shorthand
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.3
Supply Chain
83.6
Quality
80.4
Maintenance
100
Vulnerability
100
License
CSS (43.25%)
JavaScript (30.24%)
TypeScript (22.9%)
HTML (3.03%)
Nunjucks (0.48%)
Shell (0.1%)
Total Downloads
1,508,870,954
Last Day
330,659
Last Week
5,885,953
Last Month
25,082,709
Last Year
287,558,052
MIT-0 License
981 Stars
4,379 Commits
78 Forks
9 Watchers
6 Branches
132 Contributors
Updated on Jun 30, 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
-13.6%
330,659
Compared to previous day
Last Week
-9.3%
5,885,953
Compared to previous week
Last Month
3.5%
25,082,709
Compared to previous month
Last Year
-8.2%
287,558,052
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 8 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
1 existing vulnerabilities detected
Details
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 1/24 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-06-23
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