Gathering detailed insights and metrics for rollup-plugin-vuedoc
Gathering detailed insights and metrics for rollup-plugin-vuedoc
Gathering detailed insights and metrics for rollup-plugin-vuedoc
Gathering detailed insights and metrics for rollup-plugin-vuedoc
Rollup plugin to generate markdown documentation from Vue.js component source with @vuedoc/md.
npm install rollup-plugin-vuedoc
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
2 Stars
27 Commits
1 Forks
2 Watchers
3 Branches
1 Contributors
Updated on Jan 27, 2021
Latest Version
0.4.0
Package Id
rollup-plugin-vuedoc@0.4.0
Unpacked Size
25.74 kB
Size
5.62 kB
File Count
16
NPM Version
6.14.6
Node Version
12.18.3
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
Rollup plugin to generate markdown documentation from Vue.js component source with @vuedoc/md.
1npm i -D rollup-plugin-vuedoc
1// rollup.config.js 2 3import vuedoc from 'rollup-plugin-vuedoc'; 4 5export default { 6 input: 'path/to/entry-point.js', 7 ...generalConfigurations, 8 plugins: [ 9 vuedoc({ test: /\.vue$/, prefix: 'docs' }), 10 ...otherPlugins, 11 ], 12};
Generate markdown files only if the module ID matches the test. Can be a string, RegExp, or an array of them.
Path prefix for generated markdown files. Files will be put at <asset path>/<prefix>/<module's relative path>
String to be prepended before or appended after generated markdown strings. Can be a string or a function. Function will be called with an argument object including id of the module.
1export default { 2 ...generalConfigs, 3 plugins: [ 4 vuedoc({ intro: ({ id }) => `id` }), 5 ...otherPlugins, 6 ], 7}; 8 9// Generates markdown files starting with module's ID string.
If true, generate indix markdowns containing a directory name string as the title at each directory under the prefix path. If function is given, returning string will be the content of the index. Functions are called with a directory path.
Replaces substrings of generated markdown strings. test
property and replacement
property of the replace
object will be passed to String.prototype.replace()
function.
1export default { 2 ...generalConfigs, 3 plugins: [ 4 vuedoc({ replace: { test: /to be replaced/g, replacement: 'replaced' }), 5 ...otherPlugins, 6 ], 7}; 8 9// String.prototype.replace(/to be replaced/g, 'replaced') will be applied.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 0/19 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
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
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
30 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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