JSDoc - 產生API說明文件

JSDoc - 產生API說明文件

JSDoc
https://jsdoc.app/

用法

  1. 註解(comment) /** */
  2. 標記(tags) @
  3. HTML
  4. 型別註釋(type notation)
    1
    2
    3
    /** Repeat <b>AAA</b>
    * @namespace
    */
1
2
3
4
5
6
7
8
9
10
11
12
/**
* Represents a book.
* @constructor
* @param {string} title - The title of the book.
* @param {string} author - The author of the book.
* @param {string | number} [code = 0] - The code of the book.
* @param {string[]} tags - The tags of the book.
*/

function Book(title, author, code, tags) {
}

  1. 名稱路徑(NamePath)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/** @constructor */
var Person = function() {
this.say = function() {
return "I'm an instance.";
}

function say() {
return "I'm inner.";
}
}
Person.say = function() {
return "I'm static.";
}

var p = new Person();
p.say(); // I'm an instance.
Person.say(); // I'm static.
// there is no way to directly access the inner function from here

Person#say // the instance method named "say."
Person.say // the static method named "say."
Person~say // the inner method named "say."

@class
@leads NamePath

1
2
3
4
5
6
7
8
9
10
11
12
/** 
* A class for managing persons.
* @class
*/
var Person = makeClass(){
/** @leads Person# */
{
say: function(message) {
return "This person says" + message;
}
}
};

@constructs
@memberof

1
2
3
4
5
6
7
8
9
10
11
12
13
14

var Person = makeClass(){
/**
* A class for managing persons.
* @constructs Person
*/

/** @memberof Person# */
{
say: function(message) {
return "This person says" + message;
}
}
};

@extends namePath
標示子類別

1
2
3
4
5
6
7
8
/** 
* @constructor
* @extends Person
*/

function Programmer(name){
Person.call(this, name);
};

https://github.com/jsdoc/jsdoc

Author

KaiYun Cheng

Posted on

2022-11-12

Updated on

2024-04-13

Licensed under

Comments

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×