Gathering detailed insights and metrics for @sugarcrm/gulp-jsdoc3
Gathering detailed insights and metrics for @sugarcrm/gulp-jsdoc3
Gathering detailed insights and metrics for @sugarcrm/gulp-jsdoc3
Gathering detailed insights and metrics for @sugarcrm/gulp-jsdoc3
npm install @sugarcrm/gulp-jsdoc3
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
30 Commits
4 Forks
7 Watchers
2 Branches
124 Contributors
Updated on Mar 31, 2020
Latest Version
0.2.4
Package Id
@sugarcrm/gulp-jsdoc3@0.2.4
Size
703.74 kB
NPM Version
3.10.9
Node Version
6.9.2
Published on
Mar 01, 2017
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
Install gulp-jsdoc
as a development dependency:
1npm install --save-dev @sugarcrm/gulp-jsdoc3
1var jsdoc = require('gulp-jsdoc3'); 2 3gulp.task('doc', function (cb) { 4 gulp.src(['README.md', './src/**/*.js'], {read: false}) 5 .pipe(jsdoc(cb)); 6});
You can also pass in your own config to override the defaults. All CLI options can be specified here.
1var jsdoc = require('gulp-jsdoc3'); 2 3gulp.task('doc', function (cb) { 4 var config = require('./jsdoc.json'); 5 gulp.src(['README.md', './src/**/*.js'], {read: false}) 6 .pipe(jsdoc(config, cb)); 7});
Another good example is in this project's gulpfile!
ink-docstrap is used as the default layout but you can easily override it in your config like this:
{
"templates": {
"default": {
// Set my own layout file
"layoutFile": "./layout.tmpl"
}
}
}
Set env variable: DEBUG=gulp-jsdoc3
This is a reasonable attempt to wrap jsdoc using gulp as thinly as possible. All files are added after the cli.
i.e. jsdoc -c config -t node_modules/ink-docstrap/template gulpFile1 gulpFile2
jsdoc does not allow for piped input, so this attempt may be considered a gulp
anti-pattern. It also does not pass on output to be piped elsewhere.
I would like to thank Mangled Deutz @ gulp-jsdoc for the original implementation.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 3/26 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
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
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