chalk/supports-color

Improve the detections #98

ehmicky posted onGitHub

getColorDepth() was added in Node.js 9.9.0 and hasColors() and FORCE_COLOR=0|1|2|3 to Node.js 11.13.0. They are directly based on this module's code.

supports-color brings extra features:

  • supports CLI flag [--no]-color[s]
  • supports browsers (which always default to "no colors")
  • hasColors() is undefined if stream.isTTY is not true, i.e. one needs to do stream.hasColors !== undefined && stream.hasColors()

On the other hand, getColorDepth() and hasColors():

  • are in core Node.js
  • supports more fine grained color detection logic. See the current code. They basically handle much more environment variables cases.

My question is: wouldn't it make sense to do the following?

  • export ponyfills of getColorDepth() and hasColors(). Basically, just copy/pasting the code. If the Node.js running version supports those functions, they can be directly used. Those ponyfills could be removed in the future once Node.js supported versions are upgraded.
  • use those methods instead of the current detection logic.

I'm gonna re-title this issue to be about improving the detection logic.

posted by sindresorhus over 5 years ago

@issuehunt has funded $60.00 to this issue.


posted by issuehunt-app[bot] over 5 years ago

@sindresorhus idk about you but I'd personally love to retire the argv sniffing we do in this package.

posted by Qix- over 5 years ago

@Qix- I don't think we should retire it, it's useful for the common case. Instead, we should also expose the detections without the flag logic, per https://github.com/chalk/supports-color/issues/40#issuecomment-510786871.

posted by sindresorhus over 5 years ago

@sindresorhus It causes some annoyance when dealing with argument parsing, and I personally believe it's out of scope for the project. This module is to detect color support in the terminal with a potential environment variable override. Sniffing argv is pretty sacred IMO, and while I understand that might break some applications that rely on this it wouldn't be hard to migrate whatsoever.

It might make sense to support an .setGlobalSupportLevel() method to help polyfilling the old support.

But as it stands, I think it's an artifact of feature creep since it's very intensely opinionated and non-specified. We're essentially dictating how the CLI of a program should look or behave, especially without a lot of users even knowing it.

Not that we have any real metrics to support it, but I hypothesize that the vast majority of users that want to override the color support level use environment variables instead of command line flags.

Just my $0.02. I think I left a comment elsewhere (I can't find it now) about how this would look programmatically with chalk, since it's our no.1 consumer.

posted by Qix- over 5 years ago

So I've since updated my views after looking at some of the PRs that went into Node's color depth "feature".

The amount of thought and discussion that went into it was next to nothing. Their use of the term "depth" isn't even correct.

Some of the PRs were merged even after someone objected with "perhaps we should standardize this". None of us at chalk were pinged - which I realize isn't a requirement, but a lot of the concerns and discussions that would have benefitted the implementation are those we've had time and time again with users, developers and terminal emulator implementors alike over almost a decade.

That color depth method will probably break your code at some point, given how little thought and effort went into it. I'd highly recommend against using it.


While this sounds like something we should support, there's too high of a chance this would cause headache in the future. It's really hard to remove a check gracefully, without breaking a lot of people, than it is to add it - and this would definitely cause problems later on.

Thank you for the suggestion, it was a very good one but alas just didn't pan out :)

posted by Qix- over 5 years ago

Fund this Issue

$60.00
Funded

Pull requests

Recent activities

issuehunt funded 60.00 for chalk/supports-color# 98
over 5 years ago