參考:html
http://apidocjs.com/node
http://blog.csdn.net/xumin198908/article/details/41964159npm
1)環境準備(前提是已經具有nodejs環境)api
npm install apidoc -g
2)添加註釋app
/** * @api {get} / 請求APP信息 * @apiName 請求APP信息 * @apiGroup User * * * * @apiSuccess {String} return_code Firstname of the User. * @apiSuccess {String} return_msg Lastname of the User. * @apiSuccess {String} err_code Lastname of the User. * @apiSuccess {String} err_msg Lastname of the User. * @apiSuccess {Object[]} appInfo Lastname of the User. */
3)生效生成.net
apidoc -i myapp/ -o apidoc -e "node_modules"
注意 code
i,表明輸入,即要生成文檔的項目htm
o,表明輸出,文檔的目的地blog
e,表明排除,排除某些文件或文件夾文檔
3)查看
/apidoc/index.html