All Projects → jsdoc → Jsdoc

jsdoc / Jsdoc

Licence: apache-2.0
An API documentation generator for JavaScript.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to Jsdoc

Docma
A powerful tool to easily generate beautiful HTML documentation from JavaScript (JSDoc), Markdown and HTML files.
Stars: ✭ 287 (-97.71%)
Mutual labels:  api, documentation, docs, jsdoc
Jsdoc Baseline
An experimental, extensible template for JSDoc.
Stars: ✭ 51 (-99.59%)
Mutual labels:  api, documentation, docs, jsdoc
Cljdoc
📚 A central documentation hub for the Clojure community
Stars: ✭ 416 (-96.69%)
Mutual labels:  api, documentation, docs
Pico8 Api
Unofficial PICO-8 API with a lovely design ! ::
Stars: ✭ 115 (-99.08%)
Mutual labels:  api, documentation, docs
Verb
HEADS UP! Verb is going though a major transition, we've completely refactored everything from the ground up. If you're interested, please see the dev branch.
Stars: ✭ 442 (-96.48%)
Mutual labels:  api, documentation, docs
Pdoc
API Documentation for Python Projects
Stars: ✭ 853 (-93.21%)
Mutual labels:  api, documentation, docs
Parse Comments
Parse JavaScript code comments. Works with block and line comments, and should work with CSS, LESS, SASS, or any language with the same comment formats.
Stars: ✭ 53 (-99.58%)
Mutual labels:  documentation, docs, jsdoc
Zeal
Offline documentation browser inspired by Dash
Stars: ✭ 9,164 (-27.01%)
Mutual labels:  api, documentation, docs
Pyspark Cheatsheet
🐍 Quick reference guide to common patterns & functions in PySpark.
Stars: ✭ 108 (-99.14%)
Mutual labels:  documentation, docs
Ikea Tradfri Coap Docs
How can you communicate to your ikea tradfri gateway/hub through coap-client
Stars: ✭ 111 (-99.12%)
Mutual labels:  documentation, docs
Catalog
Create living style guides using Markdown or React
Stars: ✭ 1,527 (-87.84%)
Mutual labels:  documentation, docs
Restful Api Guidelines
A model set of guidelines for RESTful APIs and Events, created by Zalando
Stars: ✭ 1,397 (-88.87%)
Mutual labels:  api, documentation
Swagger Combine
Combines multiple Swagger schemas into one dereferenced schema.
Stars: ✭ 102 (-99.19%)
Mutual labels:  api, documentation
Learn
👩‍🏫 Learn how to use RunwayML with tutorials, guides, and examples!
Stars: ✭ 95 (-99.24%)
Mutual labels:  documentation, docs
Scobot
SCORM API for Content. JavaScript library, QUnit tests and examples.
Stars: ✭ 128 (-98.98%)
Mutual labels:  api, docs
L5 Swagger
OpenApi or Swagger integration to Laravel
Stars: ✭ 1,781 (-85.81%)
Mutual labels:  api, documentation
Jekyll Rtd Theme
Just another documentation theme compatible with GitHub Pages
Stars: ✭ 92 (-99.27%)
Mutual labels:  documentation, docs
Docs
API Platform documentation
Stars: ✭ 119 (-99.05%)
Mutual labels:  api, documentation
Github Template Guidelines
Guidelines for building GitHub templates.
Stars: ✭ 137 (-98.91%)
Mutual labels:  documentation, docs
Awesome Documentation Tools
🔥 📚 All the tools, processes and resources you need to create an awesome API & Project documentation
Stars: ✭ 138 (-98.9%)
Mutual labels:  api, documentation

JSDoc

Build status

An API documentation generator for JavaScript.

Want to contribute to JSDoc? Please read CONTRIBUTING.md.

Installation and Usage

JSDoc supports stable versions of Node.js 8.15.0 and later. You can install JSDoc globally or in your project's node_modules folder.

To install the latest version on npm globally (might require sudo; learn how to fix this):

npm install -g jsdoc

To install the latest version on npm locally and save it in your package's package.json file:

npm install --save-dev jsdoc

Note: By default, npm adds your package using the caret operator in front of the version number (for example, ^3.6.3). We recommend using the tilde operator instead (for example, ~3.6.3), which limits updates to the most recent patch-level version. See this Stack Overflow answer for more information about the caret and tilde operators.

If you installed JSDoc locally, the JSDoc command-line tool is available in ./node_modules/.bin. To generate documentation for the file yourJavaScriptFile.js:

./node_modules/.bin/jsdoc yourJavaScriptFile.js

If you installed JSDoc globally, run the jsdoc command:

jsdoc yourJavaScriptFile.js

By default, the generated documentation is saved in a directory named out. You can use the --destination (-d) option to specify another directory.

Run jsdoc --help for a complete list of command-line options.

Templates and tools

The JSDoc community has created templates and other tools to help you generate and customize your documentation. Here are a few of them:

Templates

Build tools

Other tools

For more information

License

JSDoc is copyright (c) 2011-present Michael Mathews [email protected] and the contributors to JSDoc.

JSDoc is free software, licensed under the Apache License, Version 2.0. See the LICENSE file for more details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].