Re: [nodejs] '\r' in a console on Windows

2013-03-05 Thread Ryan Dahl
This is a feature. Node emulates unix ANSI escape codes on Windows (allowing users to write portable code). -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to

Re: [nodejs] '\r' in a console on Windows

2013-03-05 Thread Mikeal Rogers
HE LIVES! On Mar 5, 2013, at 8:31AM, Ryan Dahl r...@tinyclouds.org wrote: This is a feature. Node emulates unix ANSI escape codes on Windows (allowing users to write portable code). -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines:

Re: [nodejs] '\r' in a console on Windows

2013-03-05 Thread Martín Ciparelli
I'd like another response just to confirm it's him and not a missing handler anywhere within the event loop of the robot he must have created by the time he was gone. On Tue, Mar 5, 2013 at 1:49 PM, Mikeal Rogers mikeal.rog...@gmail.comwrote: HE LIVES! On Mar 5, 2013, at 8:31AM, Ryan Dahl

Re: [nodejs] '\r' in a console on Windows

2013-03-05 Thread Isaac Schlueter
Yes, this is a feature. Node.js emulates Unix ANSI stuff on Windows. That's why colors work with \033[m style codes. On Tue, Mar 5, 2013 at 8:59 AM, Martín Ciparelli mcipare...@gmail.com wrote: I'd like another response just to confirm it's him and not a missing handler anywhere within the

[nodejs] '\r' in a console on Windows

2012-07-08 Thread Alan Gutierrez
I'd like to get animated progress working on Windows. baz.pl print Hello\rW\r\n; baz.js process.stdout.write('Hello\rW\r\n'); console PS C:\git\proof perl baz.pl WPS C:\git\proof node .\baz.js Hello W PS C:\git\proof I can find many sources on the Google that say that