New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-jsduck2

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-jsduck2

Gulp plugin for jsduck

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-jsduck2

A gulp plugin for jsduck

Installing

Add gulp-jsduck2 as a dev dependency:

$ npm install --save-dev gulp-jsduck2;

You'll also need to install the JSDuck gem:

$ gem install jsduck;

Previous versions of the jsduck module that this module depends on installed it by default, but since version 1.0.0 of both this module and jsduck that no longer happens.

Usage

gulp-jsduck2 can be used similarly to other Gulp plugins. Just pipe files to it and it will document them:

var gulp = require("gulp");
var GJSDuck = require("gulp-jsduck");
var gjsduck = new GJSDuck(["--out", "docs"]);

gulp.task("default", function () {
  gulp.src("src/**.js").pipe(gjsduck.doc());
});

Keywords

FAQs

Package last updated on 27 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc