hexo server状态怎么常驻后台

刚刚批发学来,转载一下

1
2
#安装pm2
npm install -g pm2

在博客根目录下面创建一个hexo_run.js

1
2
3
4
5
6
7
8
9
10
//run
const { exec } = require('child_process')
exec('hexo server',(error, stdout, stderr) => {
if(error){
console.log('exec error: ${error}')
return
}
console.log('stdout: ${stdout}');
console.log('stderr: ${stderr}');
})

运行脚本

1
pm2 start hexo_run.js

转载地址:https://blog.csdn.net/Tangcuyuha/article/details/80331169