我正在尝试将 child_process 的标准输出和标准输入通过管道传输到浏览器并将其显示在 html 页面中。我正在使用 browserify 让 node.js 在浏览器上运行。我生成 child_process 的代码是这样的。
var child = require('child_process');
var myREPL = child.spawn('myshell.exe', ['args']);
// myREPL.stdout.pipe(process.stdout, { end: false });
process.stdin.resume();
process.stdin.pipe(myREPL.stdin, { end: false });
myREPL.stdin.on('end', function() {
process.stdout.write('REPL stream ended.');
});
myREPL.on('exit', function (code) {
process.exit(code);
});
myREPL.stdout.on('data', function(data) {
console.log('\n\nSTDOUT: \n');
console.log('**************************');
console.log('' + data);
console.log('==========================');
});
我使用 browserify 创建了一个 bundle.js,我的 html 看起来像这样。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="bundle.js"></script>
<script src="main.js"></script>
</head>
<body>
</body>
</html>
我试图避免在浏览器中运行 http 服务器并将结果传递给它。还有其他方法可以做到吗?谢谢