美文网首页
[linux] 搭建YApi

[linux] 搭建YApi

作者: 卓灬不凡 | 来源:发表于2019-11-19 11:29 被阅读0次
    • 安装nodejs

    1.获取资源(部署nodejs尽可能选择偶数版本,因为偶数版本官方有较长的维护时间,故这次选择8.x。)

    curl -sL https://rpm.nodesource.com/setup_8.x | bash -

    2.安装

    yum install -y nodejs

    3.查看版本

    node -v

    4.查看npm版本

    npm -v

    • 安装mongodb

    《Linux 安装 MongoDB》

    • 搭建YApi环境

    1.准备环境搭建完成后,开始搭建YApi,安装命令

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

    启动安装服务程序(启动后可访问127.0.0.1:9090进行安装)

    yapi server

    2.安装部署完成后,进入部署目录启动服务(以守护进程启动)

    node vendors/server/app.js &

    浏览器打开部署日志上的访问地址http://127.0.0.1:3000就可以访问搭建的YApi工具了(非本地服务器,将127.0.0.1替换指定的域名或IP),此时YApi环境搭建完。

    相关文章

      网友评论

          本文标题:[linux] 搭建YApi

          本文链接:https://www.haomeiwen.com/subject/ohdwictx.html