swagger 服务搭建

Posted FigureSkating

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swagger 服务搭建相关的知识,希望对你有一定的参考价值。

初始环境

  • 大于 Node 6.x
  • 大于 NPM 3.x
  • 需要把以下两个包放部署在http服务下
    swagger-editor ( API 编辑 )
    swagger-ui ( API 查看 )

swagger-editor ( API 编辑 )

git clone https://github.com/swagger-api/swagger-editor.git
cd swagger-editor
npm install
npm run build
npm start
访问 编辑页面

http://localhost:8080/swagger-editor/index.html

swagger-ui ( API 查看 )

git clone https://github.com/swagger-api/swagger-ui.git
cd swagger-editor
npm install
npm run build
npm start
访问 查看页面

http://localhost:8080/swagger-ui/dist/index.html
默认会引用 http://petstore.swagger.io/v2/swagger.json 这个api,有两种可以修改默认访问的方法:

以上是关于swagger 服务搭建的主要内容,如果未能解决你的问题,请参考以下文章

畅购商城swagger文档如何搭建

swagger管理接口工程简单搭建

springboot项目搭建swagger

使用docker搭建Swagger

Swagger 3.0框架搭建及简单示例

Swagger 3.0框架搭建及简单示例