Swagger API NodeJS 文档
Swagger API Documentation in NodeJS
我在设置 Swagger 时遇到问题。我如何在我的 node-express 项目中实施 Swagger 来为现有的 API 编写 API 文档?
我看过 swagger、swagger-ui 和 swagger-ui-dist npm 包。但是没有得到想要的输出。
我想使用 Swagger UI 但在配置中感到困惑。谁能告诉我配置的步骤 guide 吗?
需要帮忙。
对于初学者来说,一个不错的选择是安装 Swagger NPM 包 https://www.npmjs.com/package/swagger 并按照说明进行操作。
概览:
// install
npm install -g swagger
// create a new project
swagger project create hello-world
// edit your API using the Swagger UI
swagger project edit
然后按照有关如何编写控制器代码的其余说明进行操作。
基本安装后:
这是分步指南。
希望这就是您要找的。
我在设置 Swagger 时遇到问题。我如何在我的 node-express 项目中实施 Swagger 来为现有的 API 编写 API 文档? 我看过 swagger、swagger-ui 和 swagger-ui-dist npm 包。但是没有得到想要的输出。 我想使用 Swagger UI 但在配置中感到困惑。谁能告诉我配置的步骤 guide 吗? 需要帮忙。
对于初学者来说,一个不错的选择是安装 Swagger NPM 包 https://www.npmjs.com/package/swagger 并按照说明进行操作。
概览:
// install
npm install -g swagger
// create a new project
swagger project create hello-world
// edit your API using the Swagger UI
swagger project edit
然后按照有关如何编写控制器代码的其余说明进行操作。
基本安装后:
这是分步指南。
希望这就是您要找的。