Gathering detailed insights and metrics for postcss-border-shortcut
Gathering detailed insights and metrics for postcss-border-shortcut
npm install postcss-border-shortcut
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
3,596
Last Day
3
Last Week
9
Last Month
16
Last Year
197
9 Stars
86 Commits
1 Forks
1 Watching
1 Branches
1 Contributors
Minified
Minified + Gzipped
Latest Version
1.0.0
Package Id
postcss-border-shortcut@1.0.0
Unpacked Size
9.42 kB
Size
3.58 kB
File Count
7
NPM Version
5.6.0
Node Version
9.8.0
Cumulative downloads
Total Downloads
Last day
50%
3
Compared to previous day
Last week
350%
9
Compared to previous week
Last month
128.6%
16
Compared to previous month
Last year
-18.9%
197
Compared to previous year
1
3
PostCSS plugin for assign default border type if not expressed.
1/* Before */ 2 3.one { 4 border: 1px #E7E7E7; 5} 6 7.two { 8 border-top: 1px #707C80; 9} 10 11.three { 12 border-bottom: #423424; 13} 14 15/* After */ 16 17.one { 18 border: 1px solid #E7E7E7; 19} 20 21.two { 22 border-top: 1px solid #707C80; 23} 24 25.three { 26 border-bottom: 1px solid #423424; 27}
$ npm install postcss-border-shortcut --save-dev
1const postcss = require('postcss'); 2postcss([ require('postcss-border-shortcut') ])
See PostCSS docs for other examples.
Type: string
Default: solid
You can define a default border
style property, like: solid
, dashed
, dotted
, double
, ect...
1// Set in build tool, etc. 2.border({ 3 borderType: 'dashed' 4})
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
52 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-01-06
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