如何保持实例文件随时加载

how to keep instance file loaded anytime

我已经按照此处给出的说明设置了解析服务器:https://github.com/ParsePlatform/parse-server

如果我加载了实例文件,一切都按预期工作 app.js。

app.js 来源:

var express = require('express');
var ParseServer = require('parse-server').ParseServer;
var app = express();
var api = new ParseServer({
    databaseURI: 'mongodb://localhost:27017/dev',
    cloud: '/home/myApp/cloud/main.js', 
    appId: 'myAppId',
    masterKey: 'myMasterKey', 
    fileKey: 'optionalFileKey',
    serverURL: 'http://localhost:1337/parse' 
});

app.use('/parse', api);

app.listen(1337, function() {
   console.log('parse-server-example running on port 1337.');
});

但是如果我关闭终端或者 app.js 没有加载它就不会工作,因为配置没有加载。

那么谁能指导我如何一直保持我的实例文件 运行。

提前致谢。

对于 Linux 个服务器,我正在使用 https://github.com/Unitech/pm2 对于 Windows - iisnode