read
read copied to clipboard
Silent still outputs text
Using this code, I still see the text output.
read({ prompt: 'Email: ', default: 'Email' }, (err, email) => {
read({ prompt: 'Password: ', default: 'Password', silent: true, replace: '*' }, (err, password) => {
resolve({email: email, password: password});
});
});
Just to confirm, I should see
Password: *****
when typing, right? Or does silent: true
simply not output the text a second time? Thanks.
I am seeing this error on windows as well, but not on OSX
I should mention that it is only occurring in GitBash, not in cmd
Hmm it worked for me in GitBash on Windows 10
I'm seeing this in CygWin on Windows 7
@mkeasling CygWin is not supported officially https://github.com/npm/npm#installing-on-cygwin
Same issue with GitBash (Windows 7). Possibly an issue with 32-bit?