Rac*_*elD 5 node.js jsdoc express api-doc
我正在使用http://apidocjs.com/为我正在构建的Express.js API创建公共文档.我的问题是,如何使用Express.js来路由和提供文档?
这是我的Express服务器设置:
/** Load config into globally defined __config
* @requires fs */
var fs = require('fs');
__config = JSON.parse(fs.readFileSync('config/config.json'));
/** Custom Logging Moduele
* @requires ninja_modules/jacked-logger */
log = require('./ninja_modules/jacked-logger');
/** Configure the Express Server
* @requires express
* @param {function} the callback that configures the server */
var express = require('express');
var app = express();
app.configure(function() {
/** Sets default public directory */
app.use(express.static(__dirname + '/public'));
/** Sets root views directory */
app.set('views', __dirname + '/public/views');
/** Compress response data with gzip / deflate. */
app.use(express.compress());
/** Request body parsing middleware supporting JSON, urlencoded, and multipart requests. */
app.use(express.bodyParser());
/** Compress response data with gzip / deflate. */
app.use(express.methodOverride());
/** Set Express as the Router */
app.use(app.router);
/** .html files, EJS = Embedded JavaScript */
app.engine('html', require('ejs').renderFile);
/** Default view engine name for views rendered without extensions */
app.set('view engine', 'html');
/** Custom Error Logging
* @requires ninja_modules/jacked-logger
* @param {object} err - error object
* @param {object} req - reqiuest object
* @param {object} res - response object
* @param {function} next - go to the next error */
app.use(function(err, req, res, next) {
log.error(err.stack);
res.status(500);
next(err);
});
});
/** Set express to listen to the port defined in the configuration file */
var appServer = app.listen(__config.port, function(){
log.sys("Express server listening on port " + appServer.address().port + " in " + app.settings.env + " mode");
});
// add documentation
app.use('/api', express.static(__dirname + '/public/documentation/api'));
app.use('/dev', express.static(__dirname + '/public/documentation/developer'));;
Run Code Online (Sandbox Code Playgroud)
这是我用来创建文档的grunt文件:
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
jsdoc : {
dist : {
src: ['*.js', 'config/*.json', 'ninja_modules/*.js','workers/*.js'],
options: {
destination: 'public/documentation/developer',
private: true
}
}
},
apidoc: {
ninjapi: {
src: 'router/',
dest: 'public/documentation/api/',
options: {
includeFilters: [ ".*\\.js$" ]
}
}
}
});
grunt.loadNpmTasks('grunt-jsdoc');
grunt.loadNpmTasks('grunt-apidoc');
grunt.registerTask('default', ['jsdoc','apidoc']);
}
Run Code Online (Sandbox Code Playgroud)
有没有人知道如何在不声明app.get的情况下托管我的文档('..对于每个页面?某个地方的教程会很棒.
提前致谢.
您不需要声明为每个静态文件提供服务的路由.
这应该足够了:
app.use('/api', express.static(__dirname + '/public/documentation/api'));
Run Code Online (Sandbox Code Playgroud)
但是如果public/documentation/api目录不包含索引文件,则会收到请求错误.
所以这样做,它允许您浏览目录:
app.use('/api', express.static(__dirname + '/public/documentation/api'));
app.use('/api', express.directory(__dirname + '/public/documentation/api'));
Run Code Online (Sandbox Code Playgroud)
我的问题是我__dirname在另一个文件中使用它,期望它是根目录。现在我想起来,这一点是显而易见的。如果文件包含__dirname 则__dirname = [the directory of that file]不是该文件(模块)需要进入的目录。
这导致查找错误。
谢谢您的帮助!
| 归档时间: |
|
| 查看次数: |
4570 次 |
| 最近记录: |