我正在使用 nodejs hapi 框架。到目前为止,一切都很好,我想尝试一下文档生成器。我知道它说它仍然可能会改变,但他们网站上的代码对我不起作用(http://spumko.github.com/resource/api/#documentation-generator):
// Create Hapi server
var http = new Hapi.Server('0.0.0.0', 8080);
var loutConfig = { plugin: { indexTemplatePath: './templates' } };
http.plugin().require('lout', loutConfig, function () {
http.start();
});
这会引发类型错误,抱怨 plugin() 不是 http(hapi 服务器)的函数。
有什么想法吗?
谢谢,马库斯