Installations
npm install postcss-border
Developer Guide
Typescript
No
Module System
CommonJS
Min. Node Version
>=0.12
Node Version
6.10.2
NPM Version
4.5.0
Score
65
Supply Chain
83.8
Quality
75.4
Maintenance
50
Vulnerability
100
License
Releases
Unable to fetch releases
Contributors
Unable to fetch Contributors
Languages
JavaScript (100%)
Developer
andrepolischuk
Download Statistics
Total Downloads
3,398
Last Day
3
Last Week
3
Last Month
12
Last Year
198
GitHub Statistics
8 Stars
23 Commits
2 Watching
1 Branches
1 Contributors
Package Meta Information
Latest Version
0.2.4
Package Id
postcss-border@0.2.4
Size
2.71 kB
NPM Version
4.5.0
Node Version
6.10.2
Total Downloads
Cumulative downloads
Total Downloads
3,398
Last day
0%
3
Compared to previous day
Last week
-50%
3
Compared to previous week
Last month
1,100%
12
Compared to previous month
Last year
-6.2%
198
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
postcss-border
PostCSS plugin for border shortcut
1/* before */ 2 3.hello { 4 border: 1px 0 solid #000; 5} 6 7/* after */ 8 9.hello { 10 border: 1px solid #000; 11 border-width: 1px 0; 12}
Install
1npm install --save-dev postcss-border
Usage
PostCSS
1var fs = require('fs'); 2var postcss = require('postcss'); 3var border = require('postcss-border'); 4var css = fs.readFileSync('input.css', 'utf8'); 5 6var output = postcss([border]) 7 .process(css) 8 .css;
Gulp
1var gulp = require('gulp'); 2var postcss = require('gulp-postcss'); 3var border = require('postcss-border'); 4 5gulp.task('css', function () { 6 return gulp.src('./src') 7 .pipe(postcss([ 8 border 9 ])) 10 .pipe(gulp.dest('./dist')); 11});
License
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: MIT License: LICENSE:0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/23 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
- Warn: no pull requests merged into dev branch
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Score
3
/10
Last Scanned on 2025-01-13
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 MoreGathering detailed insights and metrics for postcss-border