Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我过去曾将 pm2 用于我的快速应用程序。我很喜欢。我如何让它运行hexo。Hexo 从一个 js 入口点开始,hexo server而不是从一个 js 入口点开始。
hexo
hexo server
如果您运行的是 Linux 或 OSX,则可以使用 bash 脚本启动它。
使用以下内容创建一个名为hexo.sh的文件
#!/usr/bin/env bash hexo server
然后只是简单
pm2 start hexo.sh
我认为您可以尝试:
pm2 start app.js -- server -s
其中 app.js 是一个包含以下内容的简单文件:
require('hexo-cli');