Linux
-
创建一个
.sh
可执行脚本,例如hexo.sh
- 代码
1
2#!/usr/bin/env bash
hexo server
- 代码
-
使用
pm2 start hexo.sh
执行脚本
Windows
-
创建一个JS文件,例如名字为
app.js
- 代码
1
2
3
4
5
6
7
8
9const { exec } = require('child_process')
exec('hexo s',(error, stdout, stderr) => {
if(error){
console.log(`exec error: ${error}`)
return
}
console.log(`stdout: ${stdout}`);
console.log(`stderr: ${stderr}`);
})
- 代码
-
使用
pm2 start app.js
执行文件