如何将STDIN传递给node.js子进程

如何将STDIN传递给node.js子进程,第1张

如何将STDIN传递给node.js子进程

这是我如何使其工作的方法

var cp = require('child_process');var optipng = require('pandoc-bin').path; //This is a path to a commandvar child = cp.spawn(optipng, ['--from=markdown', '--to=html']); //the array is the argumentschild.stdin.write('# HELLO'); //my command takes a markdown string...child.stdout.on('data', function (data) {    console.log('stdout: ' + data);});child.stdin.end();


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5560308.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存