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
Running the below code on node v5.0.0 win10 x64 prints the error message uncolored in the default windows 10 terminal. This happens only with thrown errors, colored text sent to stderr (with console.error) remains colored.
console.log('\x1b[32mgreen\x1b[39m');
console.error('\x1b[31mred\x1b[39m');
throw new Error('\x1b[33myellow\x1b[39m');
The text was updated successfully, but these errors were encountered:
Can anybody confirm that this is still a problem on Node.js 6.2.1? Would be nice to at least label it confirmed-bug if others can reproduce it. @nodejs/platform-windows
Running the below code on node v5.0.0 win10 x64 prints the error message uncolored in the default windows 10 terminal. This happens only with thrown errors, colored text sent to stderr (with
console.error
) remains colored.The text was updated successfully, but these errors were encountered: