如果我执行命令grunt docular-server

我收到错误消息:

ERROR: Could not start node server [TypeError: Object #<Object> has no method 'server']

那么docular服务器未运行。

我安装了grunt来编写我的代码的文档,如下所示:

 `npm install -g grunt-cli`
 `npm install grunt grunt-docular`


我的Gruntfile.js看起来像这样:

module.exports = function(grunt) {

// Project configuration.
grunt.initConfig({

pkg: grunt.file.readJSON('package.json'),

docular: {
groups: [],
showDocularDocs: true,
showAngularDocs: true
}

});

// Load the plugin that provides the "docular" tasks.
grunt.loadNpmTasks('grunt-docular');

// Default task(s).
grunt.registerTask('default', ['docular']);

};


此示例摘自此处的官方网站:

http://grunt-docular.com/documentation/docular/docularinstall/installdocular

最佳答案

截至目前的最新版本是[email protected]

它与[email protected]不太兼容。

为了使grunt docular-server工作,我必须回到0.6.6docularpackage.json版本并运行npm install

在那之后,事情开始对我起作用。

有关详细信息,请参见https://github.com/Vertafore/docular#new-beta-version

显然,有一个新的维护人员试图使该项目重新进行。

10-04 20:37