Gathering detailed insights and metrics for broccoli-concat
Gathering detailed insights and metrics for broccoli-concat
Gathering detailed insights and metrics for broccoli-concat
Gathering detailed insights and metrics for broccoli-concat
broccoli-sourcemap-concat
Fast, good-enough concatenation with source maps.
broccoli-concat-analyser
[](https://travis-ci.org/stefanpenner/broccoli-concat-analyser)
broccoli-concat-cabbage
Concatenate broccoli trees
broccoli-es6-concat
broccoli es6 concat compatible with 0.5
npm install broccoli-concat
Typescript
Module System
Min. Node Version
Node Version
NPM Version
90.3
Supply Chain
84.6
Quality
77.7
Maintenance
100
Vulnerability
97
License
JavaScript (99.12%)
HTML (0.88%)
Total Downloads
75,346,068
Last Day
13,818
Last Week
213,562
Last Month
964,139
Last Year
8,500,862
MIT License
18 Stars
432 Commits
51 Forks
6 Watchers
14 Branches
34 Contributors
Updated on Apr 14, 2021
Minified
Minified + Gzipped
Latest Version
4.2.5
Package Id
broccoli-concat@4.2.5
Size
8.25 kB
NPM Version
6.14.11
Node Version
14.16.0
Published on
Apr 14, 2021
Cumulative downloads
Total Downloads
Last Day
-28.2%
13,818
Compared to previous day
Last Week
-15.5%
213,562
Compared to previous week
Last Month
3.3%
964,139
Compared to previous month
Last Year
-3.4%
8,500,862
Compared to previous year
11
This filter is designed to be fast & good enough. It can generates source maps substantially faster than you'll get via mozilla/source-map, because it's special-cased for straight line-to-line contenation.
It discovers input sourcemaps in relative URLs, including data URIs.
1const node = concat(node);
1const node = concat(node, { 2 outputFile: '/output.js', 3 header: ";(function() {", 4 headerFiles: ['loader.js'], 5 inputFiles: ['**/*'], 6 footerFiles: ['auto-start.js'], 7 footer: "}());", 8 sourceMapConfig: { enabled: true }, 9 allowNone: false | true // defaults to false, and will error if trying to concat but no files are found. 10});
The structure of output.js
will be as follows:
// - header
// - ordered content of the files in headerFiles
// - un-ordered content of files matched by inputFiles, but not in headerFiles or footerFiles
// - ordered content of the files in footerFiles
// - footer
note: this is intended for debugging purposes only, and will most likely negatively affect your build performace is left enabled
Setting the environment variable CONCAT_STATS=true
will result a summary of
each concatention being output to process.cwd() + 'concat-stats-for/*.json'
Each file within that directory represents a different contenation, and will contain:
Want more details? like uglified or compressed sizes? (or have more ideas) go checkout: https://github.com/stefanpenner/broccoli-concat-analyser
concat-stats-for/
1{ 2 "outputFile": "path/to/output/File", 3 "sizes": { 4 "a.js": 5, 5 "b.js": 10, 6 } 7}
other files:
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 6/21 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- 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
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
54 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
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