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 は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');