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

grunt-jsdoc

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-jsdoc

Integrates jsdoc3 generation into your Grunt build

  • 0.2.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19K
decreased by-5.34%
Maintainers
1
Weekly downloads
 
Created
Source

grunt-jsdoc-plugin Build Status

This plugin enables you to integrate the generation of comments based documentation into your Grunt build.

To your attention

The grunt team ask me to change the plugin name into NPM. The grunt-contrib namespace is now reserved to the tasks developped by the Grunt Team. I'll in a first time, deprecate the module in NPM and then update the name to grunt-jsdoc. You'll have to upgrade your package.json once the plugin will be removed from NPM.

Install

You need grunt >= 0.4 as well as node and npm installed and running on your system.

You also need java installed and a valid JAVA_HOME environment variable set.

Install this grunt plugin next to your project's Gruntfile.js with:

npm install grunt-jsdoc

If you use the previous version of Grunt (0.3), you can install it with:

npm install grunt-jsdoc-plugin

Documentation

Configuration

Configure the plugin to your project's Gruntfile.js.

First, add the jsdoc entry to the options of the initConfig method :

grunt.initConfig({
    jsdoc : {
        dist : {
            src: ['src/*.js', 'test/*.js'], 
            dest: 'doc'
        }
    }
});

The only supported options are

  • src : an array of pattern that matches the files to extract the documentation from. You can also add the pattern to a README.md file to include it in your doc as described there.
  • dest: the directory where the documentation will be generated (it will be created if needed).
  • config : (optional) a path to a jsdoc config file (refer the usejsdoc documentation below for more information).

Then, load the plugin

grunt.loadNpmTasks('grunt-contrib-jsdoc');

Documentation

The current version supports only jsdoc3 documentation style. The sources configured must contains valid jsdoc3 tags. Consult the usejsdoc website for the details.

Build

To generate the documentation, you need to call the jsdoc task :

$> grunt jsdoc

or integrate it to your build sequence :

grunt.registerTask('default', ['lint', 'test', 'jsdoc']);

Contributing

Any contribution is welcome! Please check the issues.

Release History

License

Copyright (c) 2012 Bertrand Chevrier
Licensed under the MIT license.

Keywords

FAQs

Package last updated on 17 Feb 2013

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