Gathering detailed insights and metrics for @bunchtogether/vite-plugin-flow
Gathering detailed insights and metrics for @bunchtogether/vite-plugin-flow
Gathering detailed insights and metrics for @bunchtogether/vite-plugin-flow
Gathering detailed insights and metrics for @bunchtogether/vite-plugin-flow
npm install @bunchtogether/vite-plugin-flow
Typescript
Module System
Node Version
NPM Version
JavaScript (97.81%)
Shell (2.19%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
23 Stars
11 Commits
6 Forks
1 Watchers
1 Branches
3 Contributors
Updated on Jul 09, 2025
Latest Version
1.0.2
Package Id
@bunchtogether/vite-plugin-flow@1.0.2
Unpacked Size
31.38 kB
Size
7.48 kB
File Count
10
NPM Version
8.1.2
Node Version
16.13.2
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
Support Flow static type checking in Vite
1npm install @bunchtogether/vite-plugin-flow --save-dev
or
1yarn add @bunchtogether/vite-plugin-flow --dev
1import { flowPlugin, esbuildFlowPlugin } from '@bunchtogether/vite-plugin-flow'; 2 3export default { 4 optimizeDeps: { 5 esbuildOptions: { 6 plugins: [esbuildFlowPlugin()] 7 } 8 }, 9 plugins: [ 10 flowPlugin() 11 ] 12}
Create a Vite plugin object
options
Object? Filter options (optional, default {include:/\.(flow|jsx?)$/,exclude:/node_modules/,flow:{all:false,pretty:false,ignoreUninitializedFields:false}}
)
options.include
(string | Regexp | Array<(string | Regexp)>) Strings and/or regular expressions matching file paths to include (optional, default /\.(flow|jsx?)$/
)options.exclude
(string | Regexp | Array<(string | Regexp)>) Strings and/or regular expressions matching file paths to exclude (optional, default /node_modules/
)Returns VitePlugin Returns esbuild plugin object
Create an esbuild plugin object
filter
RegExp Regular expression matching the path a files to be processed (optional, default /\.(flow|jsx?)$/
)
loaderFunction
Function Function that accepts the file path and returns the esbuild loader type (optional, default (path)=>(/\.jsx$/.test(path)?'jsx':'js')
)
flowOptions
Object Options to pass to flow-remove-types (optional, default {all:false,pretty:false,ignoreUninitializedFields:false}
)
flowOptions.all
boolean If true, bypasses looking for an @flow pragma comment before parsing. (optional, default false
)flowOptions.pretty
boolean If true, removes types completely rather than replacing with spaces. (optional, default false
)flowOptions.ignoreUninitializedFields
boolean If true, removes uninitialized class fields (foo;
, foo: string;
)
completely rather than only removing the type. THIS IS NOT SPEC
COMPLIANT! Instead, use declare foo: string;
for type-only fields. (optional, default false
)Returns EsbuildPlugin Returns esbuild plugin object
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/6 approved changesets -- score normalized to 3
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-07-07
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