A lightweight, colorful logging utility for Node.js and browser environments, supporting both CommonJS and ESM. Ideal for debugging, monitoring, and production logging with customizable output.
GitHub Repository | npm Package
- 🎨 Color-Coded Logs: Info (blue), Debug (cyan), Warning (yellow), Error (red), Critical (white on red).
- 📊 Stack Tracing: Includes caller information and full stack traces for better debugging.
- ⚙️ Customizable: Toggle timestamps, caller info, and environment-specific behavior.
- 🌐 Universal Compatibility: Supports CommonJS (
require
) and ESM (import
). - 🛡️ Error Monitoring: Captures uncaught exceptions and unhandled promise rejections globally.
- 🔍 Dynamic Import: Supports lazy loading for performance optimization.
- 📝 Metadata Support: Enhance logs with objects, arrays, or custom data.
- 📦 Memory-Safe: Prevents event listener leaks with single-instance global handlers.
- 🖥️ Browser-Friendly: Uses collapsible console groups for complex metadata.
Install via npm:
npm install @hipstersantos/colorful-logger
Or via Yarn:
yarn add @hipstersantos/colorful-logger
const Logger = require('@hipstersantos/colorful-logger');
const log = new Logger('MyApp');
log.info('Server started');
log.debug('User request', { userId: 123 });
log.error('Something went wrong', new Error('Oops'));
// Cleanup (optional, recommended for long-running apps)
log.destroy();
import Logger from '@hipstersantos/colorful-logger';
const log = new Logger('MyApp');
log.info('Server started');
log.debug('User request', { userId: 123 });
log.error('Something went wrong', new Error('Oops'));
// Cleanup
log.destroy();
const logger = await Logger.dynamicImport('DynamicApp');
logger.info('Loaded dynamically');
Customize your logger:
const log = new Logger('CustomApp', {
showTimestamp: false, // Hide timestamps
showCaller: false, // Hide caller info
env: 'production', // Suppress debug logs in production
});
Option | Type | Default | Description |
---|---|---|---|
showTimestamp |
Boolean | true |
Display timestamps in log messages. |
showCaller |
Boolean | true |
Display the caller function info. |
env |
String | development |
Environment mode (e.g., 'production'). |
exitOnError |
Boolean | true |
Exit process on errors (Node.js only). |
suppressBrowserErrors |
Boolean | false |
Suppress errors in the browser console. |
dynamicImport |
Boolean | false |
Enable lazy loading (CommonJS only). |
Method | Description |
---|---|
info(message, meta) |
Logs an informational message (blue). |
debug(message, meta) |
Logs a debug message (cyan). |
warning(message, meta) |
Logs a warning message (yellow). |
error(message, meta) |
Logs an error message (red) with stack trace. |
critical(message, meta) |
Logs a critical message (red background). |
destroy() |
Cleans up event listeners and global tracking. |
getLogger(name, options) |
Creates or retrieves a logger instance. |
dynamicImport(name) |
Lazily loads a logger (CommonJS only). |
Memory Leak Prevention:
- Global error handlers (
uncaughtException
,unhandledRejection
) are now registered only once, preventing listener accumulation. - Introduced
destroy()
method to remove logger instances and clean up global event listeners.
Robustness:
- Fixed handling of
null
metadata to prevent errors when accessingstack
.
Compatibility:
- Fully backward-compatible with previous versions.
- Fixed
import.meta
usage in.cjs
files, ensuring proper CommonJS compatibility. - Improved consistency by adding a local
package.json
in examples.
- Initial memory leak fix for
MaxListenersExceededWarning
. - Enhanced module type detection.
- Cleanup: Call
logger.destroy()
in long-running applications to free resources. - Intervals: Clear intervals or timeouts (e.g.,
clearInterval
) to prevent memory leaks. - Production: Set
env: 'production'
to suppress debug logs automatically.
Explore comprehensive usage examples in the examples directory:
usage.js
- CommonJS example.usage.mjs
- ESM example.
Run the test suite:
npm test
Licensed under the MIT License.