接口算是一种资源。以下是一些常用的接口平台。
Swagger
世界主流的接口平台,功能强大。
官网:https://swagger.io
我比较懒,就用懒办法,下面是简单的办法。
# swagger-ui
# 发布页https://github.com/swagger-api/swagger-ui/releases
wget https://github.com/swagger-api/swagger-ui/archive/v3.8.0.tar.gz
tar zxf v3.8.0.tar.gz
# 把swagger-ui-3.8.0/dist目录设置为LNMP的网站的根目录就可以用浏览器访问了。
# swagger-editor
# 发布页https://github.com/swagger-api/swagger-editor/releases/
wget https://github.com/swagger-api/swagger-editor/archive/v3.1.20.tar.gz
tar zxf v3.1.20.tar.gz
# 把swagger-editor-3.1.20目录设置为LNMP的网站的根目录就可以用浏览器访问了。
上面两步就可以搭建好了,其他的之后再调节。
参考:
https://zhuanlan.zhihu.com/p/21353795
https://www.zhihu.com/question/33516911
https://www.jianshu.com/p/d6626e6bd72c
http://blog.csdn.net/ron03129596/article/details/53559803
RAP2
阿里集团前端团队的开源项目。文档不够全面。
官网:http://rap.taobao.org/org/index.do
DOClever
也是一个评价不错的接口平台,个人觉得部署比较麻烦。文档不够全面。
官网:http://doclever.cn
评论区