7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Node.js+gulp+jsdocでAPIドキュメントを生成

Last updated at Posted at 2015-06-08

Node.jsを初めて11日目か12日目
ドキュメントを生成したくなりました。
その時のメモ

gulp-jsdocを使います

インストール

npm install gulp-jsdoc

使い方

単にソースフォルダのファイルを指定する場合

var jsdoc = require("gulp-jsdoc");
 
gulp.src("./src/*.js")
  .pipe(jsdoc('./documentation-output'))

jsdoc.parserを使う場合

gulp.src("./src/*.js")
  .pipe(jsdoc.parser(infos, name))
  .pipe(gulp.dest('./somewhere'))

infosには下記のような値を設定可能

infos.name

Type: String
Default: ''

infos.description

Type: String
Default: ''

infos.version

Type: String
Default: ''

infos.licenses

Type: Array
Default: []

infos.plugins

Type: Array
Default: false
例: ['plugins/markdown']

7
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?