All Projects → documentationjs → Documentation

documentationjs / Documentation

Licence: other
📖 documentation for modern JavaScript

Programming Languages

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

Projects that are alternatives of or similar to Documentation

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.03%)
Mutual labels:  babel, documentation, jsdoc
Compodoc
📔 The missing documentation tool for your Angular, Nest & Stencil application
Stars: ✭ 3,567 (-34.47%)
Mutual labels:  documentation, documentation-tool, jsdoc
Jsdoc To Markdown
Generate markdown documentation from jsdoc-annotated javascript
Stars: ✭ 1,199 (-77.97%)
Mutual labels:  documentation, documentation-tool, jsdoc
Sourcedocs
Generate Markdown documentation from source code
Stars: ✭ 286 (-94.75%)
Mutual labels:  documentation, documentation-tool
Devdocs Macos
An unofficial DevDocs API Documentation viewer for macOS.
Stars: ✭ 258 (-95.26%)
Mutual labels:  documentation, documentation-tool
Literate.jl
Simple package for literate programming in Julia
Stars: ✭ 272 (-95%)
Mutual labels:  documentation, documentation-tool
Website
🌐 The Babel documentation website
Stars: ✭ 631 (-88.41%)
Mutual labels:  babel, documentation
Docsify
🃏 A magical documentation site generator.
Stars: ✭ 19,310 (+254.77%)
Mutual labels:  documentation, documentation-tool
Docma
A powerful tool to easily generate beautiful HTML documentation from JavaScript (JSDoc), Markdown and HTML files.
Stars: ✭ 287 (-94.73%)
Mutual labels:  documentation, jsdoc
Tsdoc
A doc comment standard for TypeScript
Stars: ✭ 3,785 (-30.46%)
Mutual labels:  documentation, jsdoc
Sphinx
Main repository for the Sphinx documentation builder
Stars: ✭ 4,313 (-20.76%)
Mutual labels:  documentation, documentation-tool
jsdoc-api
A programmatic interface for jsdoc3 with a few extra features
Stars: ✭ 55 (-98.99%)
Mutual labels:  jsdoc, documentation-tool
Electron Vue
An Electron & Vue.js quick start boilerplate with vue-cli scaffolding, common Vue plugins, electron-packager/electron-builder, unit/e2e testing, vue-devtools, and webpack.
Stars: ✭ 14,610 (+168.42%)
Mutual labels:  babel, documentation
Investigate.vim
A Vim plugin for looking up documentation
Stars: ✭ 282 (-94.82%)
Mutual labels:  documentation, documentation-tool
Doc2dash
Create docsets for Dash.app-compatible API browser.
Stars: ✭ 380 (-93.02%)
Mutual labels:  documentation, documentation-tool
The Documentation Compendium
📢 Various README templates & tips on writing high-quality documentation that people want to read.
Stars: ✭ 4,306 (-20.89%)
Mutual labels:  documentation, documentation-tool
Ldoc
LDoc is a LuaDoc-compatible documentation generator which can also process C extension source. Markdown may be optionally used to render comments, as well as integrated readme documentation and pretty-printed example files.
Stars: ✭ 481 (-91.16%)
Mutual labels:  documentation, documentation-tool
Hippie Swagger
API testing tool with automatic swagger assertions
Stars: ✭ 166 (-96.95%)
Mutual labels:  documentation, documentation-tool
Hexo Theme Doc
A documentation theme for the Hexo blog framework
Stars: ✭ 222 (-95.92%)
Mutual labels:  documentation, documentation-tool
Docute
📚 Effortless documentation, done right.
Stars: ✭ 3,575 (-34.32%)
Mutual labels:  documentation, documentation-tool

The documentation system for modern JavaScript

Circle CI npm version Gitter David Inline docs

📅 Current maintenance status

  • Supports modern JavaScript: ES5, ES2017, JSX, Vue and Flow type annotations.
  • Infers parameters, types, membership, and more. Write less documentation: let the computer write it for you.
  • Integrates with GitHub to link directly from documentation to the code it refers to.
  • Customizable output: HTML, JSON, Markdown, and more

Examples

Documentation

User Guide

Globally install documentation using the npm package manager:

$ npm install -g documentation

This installs a command called documentation in your path, that you can point at JSDoc-annotated source code to generate human-readable documentation. First, run documentation with the --help option for help:

Usage:

# generate markdown docs for index.js and files it references
documentation build index.js -f md

# generate html docs for all files in src, and include links to source files in github
documentation build src/** -f html --github -o docs

# document index.js, ignoring any files it requires or imports
documentation build index.js -f md --shallow

# validate JSDoc syntax in util.js
documentation lint util.js

# update the API section of README.md with docs from index.js
documentation readme index.js --section=API

# build docs for all values exported by index.js
documentation build --document-exported index.js

# build html docs for a TypeScript project
documentation build index.ts --parse-extension ts -f html -o docs

Commands:
  build [input..]   build documentation
  lint [input..]    check for common style and uniformity mistakes
  readme [input..]  inject documentation into your README.md

Options:
  --version  Show version number                                       [boolean]
  --help     Show help                                                 [boolean]

Contributing

We have plenty of issues that we'd love help with.

  • Robust and complete JSDoc support, including typedefs.
  • Strong support for HTML and Markdown output
  • Documentation coverage, statistics, and validation

documentation is an OPEN Open Source Project. This means that:

Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.

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].