@rogerpence/rp-utils
    Preparing search index...

    Variable consoleExtensionsConst

    consoleExtensions: true

    Console extensions that add color-coded logging methods.

    Import this module to add the following methods to the global console object:

    • console.success() - Green text for success messages
    • console.jsonString() - Pretty-printed JSON in green
    • Enhanced console.error() - Red text
    • Enhanced console.log() - Blue text
    • Enhanced console.info() - Cyan text
    • Enhanced console.warn() - Yellow text
    import '@rogerpence/rp-utils/console';

    console.success('Operation completed!');
    console.jsonString({ foo: 'bar' });