Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

terminal color goes wrong after spawn #3028

Closed
ui3o opened this issue Oct 15, 2020 · 2 comments
Closed

terminal color goes wrong after spawn #3028

ui3o opened this issue Oct 15, 2020 · 2 comments

Comments

@ui3o
Copy link

ui3o commented Oct 15, 2020

Syndrome

On windows after spawn the terminal color are not displayed well.

  • Node.js Version: v12.19.0
  • OS: windows 10
  • Scope (install, code, runtime, meta, other?): runtime
  • Module (and version) (if relevant): spawn

✔ The first colored line display well but after the spawn
✖ The second colored line wrong

const { spawn } = require('child_process');

async function test() {
    console.log('\x1b[36m%s\x1b[0m', 'I am cyan');
    await run('echo Hello world!');
    console.log('\x1b[36m%s\x1b[0m', 'I am cyan');

    async function run(scrpt) {
        const cmd = spawn('bash', ['-c', scrpt], { stdio: 'inherit' });
        return new Promise((resolve) => {
            cmd.on('close', (code) => resolve(code));
        });
    }
}

test();
  • Cygwin is installed
  • bash is available on the path

image

Anybody knows what is wrong with this code?

Thank you!

@bmuenzenmeyer
Copy link
Contributor

This question is idle and left unanswered for years now.

  • Does the behavior persist if you upgrade to a new version of Node.js? This reported version is end of life.
  • Have you attempted to ask this question within other communities, such as stackoverflow?

I am going to circle back in a couple weeks to see if we can close as no-longer relevant.


FWIW, I ran the above in a Node 16.X REPL and got correct behavior:

image

@bmuenzenmeyer
Copy link
Contributor

closing per the above plan

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants