WebStorm: How to Generate JSDoc Documentation

I just started using WebStorm and JSDoc to document my JavaScript. However, I have not found a way to generate HTML documentation using some of the built-in functionality of WebStorm. I searched the Internet and Stack Overflow, but found only a lot of questions about JSDoc syntax, etc.

What am I missing? I am using WebStorm 7.0.3.

+4
source share
3 answers

Good article on jsDoc for phpStorm at this link .

In WebStorm, I think the same thing.

+4
source

Webstorm v8.0.0, JSDoc, /** method function, , Enter, parameters .

Webstorm.

+16

WebStorm has no built-in functions for creating documentation. You can use external solutions for this, at least as https://github.com/jsdoc3/jsdoc

I use jsduck for this: https://github.com/senchalabs/jsduck

+3
source

Source: https://habr.com/ru/post/1525704/


All Articles