Skip to content
zccz14 edited this page Dec 26, 2016 · 2 revisions

假设已经完成下面软件的安装/部署:

  • node.js - 6.x 及以上版本
  • MongoDB - 3.x 及以上版本

安装/部署步骤:

  1. 下载某个 Release 版本。

  2. 进入对应目录,安装依赖:

    $ npm install
  3. 配置 config.js

  4. 启动服务器:

    $ npm start

    你也可以使用各种守护态运行:

    $ nohup npm start &

    或者利用 forever

    $ forever start index.js
  5. 完成。

Clone this wiki locally