Skip to content Skip to sidebar Skip to footer
Showing posts with the label Jsdoc

Getting Jsdoc Output In Json Format

Is there any way to configure JSDoc such that the output is in JSON format instead of the usual HMT… Read more Getting Jsdoc Output In Json Format

How To Jsdoc Multiple Inheritance Or Mixins?

How do I document mixins or multiple inheritance? /** * @class Parent */ function Parent() { } P… Read more How To Jsdoc Multiple Inheritance Or Mixins?

Default "home" Text And Content For Jsdoc

After running a basic JSDoc compile/render from Node.js: jsdoc file1.js file2.js I get a well-form… Read more Default "home" Text And Content For Jsdoc

How To Display Javascript Methods In A 'group' In Jsdoc?

Is there are possibility to 'group' functions within a class (AMD/RequireJS Module) ? My cl… Read more How To Display Javascript Methods In A 'group' In Jsdoc?

How To Parse Jsdoc

I have an HTML file. There are some JSDoc inside like this: /** * If true, this slider is disabled… Read more How To Parse Jsdoc

_best Practices For Jsdoc'ing Javascript Files Written In The "revealing Module Pattern" Style?

Most of my Javascript functions are relatively simple, and called for their sideeffects: I use jQu… Read more _best Practices For Jsdoc'ing Javascript Files Written In The "revealing Module Pattern" Style?

Document Structure Of A Value For Arbitrary Keys In An Object In Jsdoc

I have a function factory: function factory(events) { for(const key in events) { const { befo… Read more Document Structure Of A Value For Arbitrary Keys In An Object In Jsdoc

Documenting Callback Parameters Using Google Closure Compiler

How can you document names and descriptions of callback parameters using the Google Closure Compile… Read more Documenting Callback Parameters Using Google Closure Compiler