HBHConsole
Dynamic console with live updates, prefix, suffix, and styling.
1import hbhconsole from 'hbh-terminal';3// Basic logging4hbhconsole.log('Hello world!');5hbhconsole.success('✅ Task completed!');6hbhconsole.warn('⚠️ Warning issued!', { timestamp: true });8// Dynamic update9const logRef = hbhconsole.log('Loading...');10setTimeout(() => logRef.update('Almost done... 🔄'), 2000);12// Clear log13logRef.clear();
Log options:
color– text colorprefix/suffix– optional texttimestamp– add time prefixbold,italic,underline– text effects