A small nodejs utility to get the color of a pixel on the desktop screen.
npm i pixcolor
import pixcolor from pixcolor;
// synchronous usage - this gets the pixel at coordinate 100, 200
const color = pixcolor([100, 200], true);
// async usage - this gets the pixel at coordinate 100, 200
pixcolor([100, 200], (err, color) => {
});The return value will be in the format RRGGBB like a hex color, but it doesn't have an octothorpe prepended.
This uses edge-js, so it only runs on windows, and from a node environment - it will not work in the browser.