vote up 6 vote down star
5

Hi, I have some JavaScript to document and am not sure which tool is best to use - ideally I would like to publish the docs online but also have an offline browsable version. I know there are more tools about than jsdoc nowadays - any experiences of different doc tools for JavaScript would be useful. If it has a maven plugin that would be a bonus but not required.

flag

1  
Check this question which is about just Visual studio: stackoverflow.com/questions/210324/… – Amr ElGarhy Aug 3 at 9:35
I don't use Visual Studio – DLauer Aug 3 at 9:51

5 Answers

vote up 4 vote down

Natural Docs is one option that can produce nicely formatted HTML documentation (example output), with at least basic support for JavaScript. Someone's also written a doxygen helper script to use that with JavaScript as well.

link|flag
vote up 1 vote down

JsDoc-Toolkit is also worth a look: http://code.google.com/p/jsdoc-toolkit/

link|flag
vote up 4 vote down

Code Illuminated: One of the Mozilla developers has created a documentation tool that's been used to document the Ubiquity extension. Read about it in the blog post: Beautifully Documented Code.

Here's a relevant extract to give you some idea what it is:

a single-page JavaScript application that can be served from static files, which takes in raw JavaScript files and dynamically renders the documentation alongside the code in the reader’s browser.

alt text

The raw source code for the file being documented above just has chunks of comments that are marked-up in WikiCreole; when the parser runs into such a chunk, it renders it alongside the code it annotates using Ivan Fomichev and Chris Purcell’s JavaScript Creole 1.0 Parser.

link|flag
Its quite ugly and doesn't work in Internet Explorer - no good for me. – DLauer Aug 3 at 22:21
Looks the same in IE8 and Firefox here. – Sam Hasler Aug 5 at 21:45
vote up 0 vote down

Slightly off topic for this, but related enough I feel to warrant an answer.

The vsdoc convention is useful for getting intellisense in Visual Studio.

The folllowing link is probably a good place to start:

http://blogs.msdn.com/webdevtools/archive/2008/11/07/hotfix-to-enable-vsdoc-js-intellisense-doc-files-is-now-available.aspx

link|flag
vote up 2 vote down check

I found some of my own after some research:

  • JSDoc - the original Javadoc-style tool
  • JSDoc Toolkit - a re-write by the original JSDoc author
  • YUI Doc - the doc generation tool used by the YUI team
  • Ext Doc - generates Ext-style API documentation

There is also a Maven JSTools Plugin that supports JSDoc Toolkit.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.