You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a continuation of #42. As pushing some code to ignore process.stdin on Windows allows to open devtool window there still is a problem with stdin.
This code reproduce the error:
//test.js
var readline = require('readline');
var rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: true
});
rl.on('line', function(line){
console.log(line);
})
I have been looking into this, and unfortunately Electron dose not support stdin on Windows. I've fixed devtool so that it should not report this error anymore, but piping into devtool will still not work in Windows terminal.
This is a continuation of #42. As pushing some code to ignore process.stdin on Windows allows to open devtool window there still is a problem with stdin.
This code reproduce the error:
Error: Implement me. Unknown stdin file type!
Windows 7 x64
S.O. Admin rights.
Node v5.10.0.
npm v3.8.3.
DevTool v1.9.1.
The text was updated successfully, but these errors were encountered: