如何在Node.js中运行服务器时执行控制台命令

我正在做一个游戏服务器,我想从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); })