Can Chrome\'s built-in JavaScript console display colors?
I want errors in red, warnings in orange and console.log\'s in green. Is that possible?
console.log
I created a package for the same. cslog
Install it with
npm i cslog
Use It like this
import log from 'cslog' log.h2("This is heading 2") log.p("This is colored paragraph") log.d(person, "Person Info")
You can give your custom colors as well. here