Go to file
ariesly15 59bade3a8a
Bugfix 2022 11 01 (#2628)
* fix: 修复【Mongo 注入获取 token】的问题

* chore: up version

* chore: 关闭 Pre-request Script 和 Pre-response Script

v1.11.0 之后 如下脚本功能关闭,如需打开,请联系管理员添加. 在 db, mail 同级配置 scriptEnable: true, 并重启服务 即可

Co-authored-by: ariesly <ariesly@arieslymac13.local>
2022-11-01 23:00:20 +08:00
.github chore: fix typo 2018-04-16 18:05:51 +08:00
client fix: 修复沙盒越权 (#2320) 2021-08-25 14:44:28 +08:00
common Bugfix 2022 11 01 (#2628) 2022-11-01 23:00:20 +08:00
docs Update plugin-list.md 2020-12-10 20:29:40 +08:00
exts fix: fixed_sandbox_bug 2021-06-25 11:57:19 +08:00
server Bugfix 2022 11 01 (#2628) 2022-11-01 23:00:20 +08:00
static chore: 更新前端静态文件,增加测试文件,增加code format 配置文件,增加自动生成changelog工具 2021-10-13 16:59:19 +08:00
test chore: 更新前端静态文件,增加测试文件,增加code format 配置文件,增加自动生成changelog工具 2021-10-13 16:59:19 +08:00
.eslintignore
.eslintrc.js feat: 优化token,增加用户信息 2019-01-30 10:13:43 +08:00
.gitignore fix: tui-editor 按钮图标不显示问题 2018-11-06 12:44:34 +08:00
.npmignore opti: npm publish 2018-11-06 16:02:51 +08:00
.npmrc 添加.npmrc文件 2018-06-11 09:03:33 +08:00
.prettierrc.js chore: 更新前端静态文件,增加测试文件,增加code format 配置文件,增加自动生成changelog工具 2021-10-13 16:59:19 +08:00
CHANGELOG.md chore: 更新前端静态文件,增加测试文件,增加code format 配置文件,增加自动生成changelog工具 2021-10-13 16:59:19 +08:00
config_example.json 自动化测试时服务端测试node默认2分钟没有返回就直接断掉连接,可以手动设置一个超时时间。 2020-04-03 18:03:44 +08:00
LICENSE Update LICENSE 2017-10-11 03:16:28 -05:00
nodemon.json
npm-publish.js chore: 更新前端静态文件,增加测试文件,增加code format 配置文件,增加自动生成changelog工具 2021-10-13 16:59:19 +08:00
package-lock.json Bugfix 2022 11 01 (#2628) 2022-11-01 23:00:20 +08:00
package.json Bugfix 2022 11 01 (#2628) 2022-11-01 23:00:20 +08:00
plugin.json 增加openapi导入插件 2018-01-23 15:09:15 +08:00
README.md Update README.md 2021-08-24 16:19:56 +08:00
SECURITY.md Update SECURITY.md 2021-08-23 15:44:45 +08:00
webpack.alias.js fix: pipe expression bug 2017-11-27 13:56:10 +08:00
yapi-base-flow.jpg
ydoc.js docs: opti 2019-02-15 13:40:46 +08:00
ydocfile.js opti: docs 2018-03-07 14:25:26 +08:00
ykit.config.js node path 兼容windows 2019-03-02 10:26:53 +08:00

YApi 可视化接口管理平台

体验地址:

http://yapi.smart-xwork.cn/

文档:

hellosean1025.github.io/yapi

平台介绍

avatar

YApi 是高效易用功能强大的 api 管理平台,旨在为开发、产品、测试人员提供更优雅的接口管理服务。可以帮助开发者轻松创建、发布、维护 APIYApi 还为用户提供了优秀的交互体验,开发人员只需利用平台提供的接口数据写入工具以及简单的点击操作就可以实现接口的管理。

QQ交流群:

644642474 主群可能已满

941802405 群2欢迎加入

特性

  • 基于 Json5 和 Mockjs 定义接口返回数据的结构和文档,效率提升多倍
  • 扁平化权限设计,即保证了大型企业级项目的管理,又保证了易用性
  • 类似 postman 的接口调试
  • 自动化测试, 支持对 Response 断言
  • MockServer 除支持普通的随机 mock 外,还增加了 Mock 期望功能,根据设置的请求过滤规则,返回期望数据
  • 支持 postman, har, swagger 数据导入
  • 免费开源,内网部署,信息再也不怕泄露了

内网部署

环境要求

  • nodejs7.6+)
  • mongodb2.6+
  • git

安装

使用我们提供的 yapi-cli 工具,部署 YApi 平台是非常容易的。执行 yapi server 启动可视化部署程序,输入相应的配置和点击开始部署,就能完成整个网站的部署。部署完成之后,可按照提示信息,执行 node/{网站路径/server/app.js} 启动服务器。在浏览器打开指定url, 点击登录输入您刚才设置的管理员邮箱,默认密码为 ymfe.org 登录系统(默认密码可在个人中心修改)。

npm install -g yapi-cli --registry https://registry.npm.taobao.org
yapi server 

服务管理

利用pm2方便服务管理维护。

npm install pm2 -g  //安装pm2
cd  {项目目录}
pm2 start "vendors/server/app.js" --name yapi //pm2管理yapi服务
pm2 info yapi //查看服务信息
pm2 stop yapi //停止服务
pm2 restart yapi //重启服务

升级

升级项目版本是非常容易的,并且不会影响已有的项目数据,只会同步 vendors 目录下的源码文件。

cd  {项目目录}
yapi ls //查看版本号列表
yapi update //更新到最新版本
yapi update -v {Version} //更新到指定版本

教程

YApi 插件

代码生成

YApi docker部署非官方

YApi 一些工具

YApi 的一些客户

  • 去哪儿
  • 携程
  • 艺龙
  • 美团
  • 百度
  • 腾讯
  • 阿里巴巴
  • 京东
  • 今日头条
  • 唯品支付
  • 链家网
  • 快手
  • 便利蜂
  • 中商惠民
  • 新浪
  • VIPKID
  • 马蜂窝
  • 伴鱼
  • 旷视科技

Authors

License

Apache License 2.0