-
Notifications
You must be signed in to change notification settings - Fork 198
Open
Description
Will it support colored console.log output? Using different colors for different types will make it easier to distinguish
https://github.com/ahaoboy/deno-ext/tree/main/deno-console
If someone wants to use a styled console, they can use the following code to override the original implementation
import { Console } from '@deno-ext/console'
const encoder = new TextEncoder();
const print = s => tjs.stdout.write(encoder.encode(s));
globalThis.console = new Console(print)
console.log(1)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels