我正在制作一个游戏服务器,我想在从 SSH 运行服务器后输入命令。例如:addbot、generatemap、kickplayer 等。
就像在半条命或任何其他游戏服务器中一样。如何让 Node.js 监听我的命令并保持服务器在 SSH 中运行?
我正在制作一个游戏服务器,我想在从 SSH 运行服务器后输入命令。例如:addbot、generatemap、kickplayer 等。
就像在半条命或任何其他游戏服务器中一样。如何让 Node.js 监听我的命令并保持服务器在 SSH 中运行?
您可以像这样使用process.stdin:
process.stdin.resume();
process.stdin.setEncoding('utf8');
process.stdin.on('data', function (text) {
console.log(text);
if (text.trim() === 'quit') {
done();
}
});
function done() {
console.log('Now that process.stdin is paused, there is nothing more to do.');
process.exit();
}
否则,您可以使用诸如提示https://github.com/flatiron/prompt之类的帮助程序库,它可以让您执行以下操作:
var prompt = require('prompt');
// Start the prompt
prompt.start();
// Get two properties from the user: username and email
prompt.get(['username', 'email'], function (err, result) {
// Log the results.
console.log('Command-line input received:');
console.log(' username: ' + result.username);
console.log(' email: ' + result.email);
})