Gathering detailed insights and metrics for broccoli-dependency-funnel
Gathering detailed insights and metrics for broccoli-dependency-funnel
Gathering detailed insights and metrics for broccoli-dependency-funnel
Gathering detailed insights and metrics for broccoli-dependency-funnel
broccoli-funnel
Broccoli plugin that allows you to filter files selected from an input node down based on regular expressions.
broccoli-amd-funnel
Funnel based on whether a module is AMD or not
broccoli-funnel-reducer
broccoli-source
Broccoli plugin for referring to source directories on the file system
npm install broccoli-dependency-funnel
69.6
Supply Chain
74
Quality
77.9
Maintenance
100
Vulnerability
98.2
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
3 Stars
68 Commits
4 Forks
3 Watching
1 Branches
5 Contributors
Updated on 14 Sept 2018
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-35.6%
1,053
Compared to previous day
Last week
-10.1%
7,750
Compared to previous week
Last month
1.3%
36,011
Compared to previous month
Last year
-28.7%
506,006
Compared to previous year
This Broccoli plugin funnels a set of files included (or excluded) from a JS dependency graph.
In other words, you specify an ES6 module as an entry point and the plugin will walk its import graph and only copy-forward the files included in the graph. Alternatively, you can copy forward all files except those in the graph.
1const DependencyFunnel = require('broccoli-dependency-funnel'); 2const input = 'src'; // Can be a directory or Broccoli plugin/node 3 4module.exports = new DependencyFunnel(input, { 5 include: true, 6 entry: 'app.js', 7 external: [ 'lodash' ] 8});
include
/ exclude
: you must specify exactly one of these options set to true
. This determines whether the files included in the dependency graph or the files excluded from the dependency graph will be funneled forward.
entry
: you must specify an entry point to the dependency graph you wish to funnel. This should be a string path relative the input directory/node.
external
: an optional array of imports to be treated as external, meaning they aren't present in the given input directory structure.
git clone <repository-url>
cd broccoli-dependency-funnel
npm install
npm run test
or npm run test:debug
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 2/18 approved changesets -- score normalized to 1
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
license 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
70 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
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