You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
292 B
9 lines
292 B
|
3 months ago
|
// 启动服务器脚本
|
||
|
|
console.log('启动微信小程序服务器...');
|
||
|
|
const server = require('./server.js');
|
||
|
|
console.log('服务器启动完成,保持运行中...');
|
||
|
|
|
||
|
|
// 防止进程退出
|
||
|
|
setInterval(() => {
|
||
|
|
console.log('服务器运行中:', new Date().toISOString());
|
||
|
|
}, 60000);
|