I am spawnning a java App (REPL for querying a local DB) using:
repl = = require('child_process').spawn('java', ['-cp', '...list of libs...', ,{ cwd: '...path to env...', env: process.env, customFds: [-1, -1, -1] });
The REPL loads fine because I can seen its outputs in stdout, but stdin.write commands don't go throught. I can however write them directly the console window of the node process itself (which is weird since I didn't .resume() it). I have printed out the stdin of the spawned process, it looks like this:
{ _handle:
{ writeQueueSize: 0,
socket: [Circular],
onread: [Function: onread] },
_pendingWriteReqs: 0,
_flags: 0,
_connectQueueSize: 0,
destroyed: false,
bytesRead: 0,
bytesWritten: 0,
allowHalfOpen: undefined,
writable: true,
readable: false }
It seems there is no 'fd' defined, and also .readable returns false. How can this be resolved?
(this is all on a windows machine, node v0.6.6)
Thanks