Create a custom Node.js Console that automatically adds colors to JSON strings.
pnpm add styled-json-consoleimport { createConsole } from 'styled-json-console';
const myConsole = createConsole({
// Options go here
});
myConsole.log(
JSON.stringify({
message: 'Hello, World!',
now: Date.now(),
}),
);Checkout this repo then run this:
pnpm install
pnpm build
node ./example/index.ts