terminalizer icon indicating copy to clipboard operation
terminalizer copied to clipboard

TypeError: process.stdin.setRawMode is not a function

Open eabase opened this issue 3 years ago • 2 comments

Trying to run under Cygwin on Win81 with Py3.8 result in:

# terminalizer record demo
defaultConfigPath
The recording session is started
Press CTRL+D to exit and save the recording
Error:
  TypeError: process.stdin.setRawMode is not a function

Hint:
  Use the --help option to get help about the usage

Node & NPM versions:

node v12.18.4
npm 6.14.6

eabase avatar Dec 15 '20 15:12 eabase

maybe replace line with

 if(process.stdin.isTTY) {
            process.stdin.setRawMode(true);
 }

app still crashes though, even after updating to:

v14.15.1
7.1.2

eabase avatar Dec 15 '20 19:12 eabase

I got the same problem while trying to record with git bash and didn't found a solution so far

edit: It worked on Powershell though

igorfersantos avatar Mar 24 '22 14:03 igorfersantos