The Node.js console module provides a simple debugging console similar to the JavaScript console mechanism provided by web browsers. It's a global object that can be accessed from anywhere in your Node.js application without requiring an explicit import. The console module writes to stdout (standard output) and stderr (standard error), making it essential for logging, debugging, and monitoring application behavior.
While the console is primarily used during development for debugging purposes, it's also commonly used in production for logging important events, errors, and system information. However, for production applications, it's recommended to use dedicated logging libraries like Winston, Bunyan, or Pino for more advanced features like log levels, file rotation, and structured logging.
The console module provides several methods for different types of output. Here are the most commonly used methods:
| Method | Description | Output Stream |
|---|---|---|
| console.log() | Prints standard output with a newline | stdout |
| console.info() | Alias for log() - informational messages | stdout |
| console.error() | Prints error messages to standard error | stderr |
| console.warn() | Alias for error() - warning messages | stderr |
| console.debug() | Alias for log() - debug messages | stdout |
// Basic logging
console.log('Hello, Node.js!');
console.log('User logged in:', 'alice@example.com');
// Multiple arguments
console.log('Name:', 'Alice', 'Age:', 25, 'Active:', true);
// Output: Name: Alice Age: 25 Active: true
// String substitution (printf-style)
console.log('User %s is %d years old', 'Bob', 30);
// Output: User Bob is 30 years old
// Informational message
console.info('Server started on port 3000');
// Warning message
console.warn('API rate limit approaching');
// Error message
console.error('Database connection failed');
// Debug message
console.debug('Request headers:', { 'Content-Type': 'application/json' });
The console.dir() method uses util.inspect() to print a detailed representation of an object, showing all properties including non-enumerable ones.
The console.table() method displays tabular data as a table, making it easy to visualize arrays and objects.
These methods measure the execution time of code blocks, useful for performance profiling and optimization.
The console.trace() method prints a stack trace showing the call path to the current point in the code, useful for debugging complex call chains.
The console.assert() method writes an error message to the console if the assertion is false. If the assertion is true, nothing happens.
These methods count how many times a particular label has been called, useful for tracking function calls or loop iterations.
These methods create collapsible groups in the console output, making it easier to organize related log messages.
const user = {
name: 'Alice',
age: 25,
address: {
city: 'New York',
country: 'USA'
},
hobbies: ['reading', 'coding', 'gaming']
};
// console.log() shows a simple representation
console.log(user);
// console.dir() shows more details with options
console.dir(user, { depth: null, colors: true });
// Inspect with custom depth
const nested = { a: { b: { c: { d: { e: 'deep' } } } } };
console.dir(nested, { depth: 3 }); // Shows up to 3 levels
// Show hidden properties
console.dir(user, { showHidden: true });
// Array of objects
const users = [
{ id: 1, name: 'Alice', role: 'Admin' },
{ id: 2, name: 'Bob', role: 'User' },
{ id: 3, name: 'Charlie', role: 'Moderator' }
];
console.table(users);
/*
+---------+----+-----------+-------------+
| (index) | id | name | role |
+---------+----+-----------+-------------+
| 0 | 1 | 'Alice' | 'Admin' |
| 1 | 2 | 'Bob' | 'User' |
| 2 | 3 | 'Charlie' | 'Moderator' |
+---------+----+-----------+-------------+
*/
// Display specific columns
console.table(users, ['name', 'role']);
// Simple array
const fruits = ['Apple', 'Banana', 'Orange'];
console.table(fruits);
// Object
const config = {
host: 'localhost',
port: 3000,
database: 'myapp'
};
console.table(config);
// Basic timing
console.time('loop');
for (let i = 0; i < 1000000; i++) {
// Some operation
}
console.timeEnd('loop');
// Output: loop: 5.234ms
// Multiple timers
console.time('database-query');
console.time('api-call');
// Simulate async operations
setTimeout(() => {
console.timeEnd('database-query');
// Output: database-query: 100.123ms
}, 100);
setTimeout(() => {
console.timeEnd('api-call');
// Output: api-call: 200.456ms
}, 200);
// console.timeLog() - intermediate timing
console.time('process');
// Do some work
console.timeLog('process', 'Step 1 complete');
// Do more work
console.timeLog('process', 'Step 2 complete');
// Finish
console.timeEnd('process');
// Practical example: comparing algorithms
console.time('Array.push');
const arr1 = [];
for (let i = 0; i < 100000; i++) {
arr1.push(i);
}
console.timeEnd('Array.push');
console.time('Array[i]');
const arr2 = [];
for (let i = 0; i < 100000; i++) {
arr2[i] = i;
}
console.timeEnd('Array[i]');
function first() {
second();
}
function second() {
third();
}
function third() {
console.trace('How did we get here?');
}
first();
/*
Output:
Trace: How did we get here?
at third (trace.js:10:13)
at second (trace.js:6:5)
at first (trace.js:2:5)
at Object.<anonymous> (trace.js:13:1)
*/
// Practical use: debugging middleware chain
function middleware1(req, res, next) {
console.trace('Middleware 1');
next();
}
function middleware2(req, res, next) {
console.trace('Middleware 2');
next();
}
const age = 15;
// Assertion passes - no output
console.assert(age >= 0, 'Age must be positive');
// Assertion fails - prints error
console.assert(age >= 18, 'User must be 18 or older');
// Output: Assertion failed: User must be 18 or older
// Multiple arguments
const user = { name: 'Alice', role: 'user' };
console.assert(user.role === 'admin', 'User is not admin:', user);
// Practical use: validating function inputs
function divide(a, b) {
console.assert(b !== 0, 'Division by zero!');
return a / b;
}
divide(10, 2); // No output
divide(10, 0); // Assertion failed: Division by zero!
// Note: console.assert() does NOT throw an error
// It only logs to console - execution continues
// Basic counting
console.count('clicks'); // clicks: 1
console.count('clicks'); // clicks: 2
console.count('clicks'); // clicks: 3
// Different labels
console.count('api-calls'); // api-calls: 1
console.count('db-queries'); // db-queries: 1
console.count('api-calls'); // api-calls: 2
// Reset counter
console.countReset('clicks');
console.count('clicks'); // clicks: 1
// Practical example: tracking function calls
function processUser(user) {
console.count('processUser called');
// Process user...
}
processUser({ name: 'Alice' }); // processUser called: 1
processUser({ name: 'Bob' }); // processUser called: 2
processUser({ name: 'Charlie' }); // processUser called: 3
// Track different event types
function handleEvent(type) {
console.count(`event-${type}`);
}
handleEvent('click'); // event-click: 1
handleEvent('scroll'); // event-scroll: 1
handleEvent('click'); // event-click: 2
// Basic grouping
console.group('User Details');
console.log('Name: Alice');
console.log('Age: 25');
console.log('Role: Admin');
console.groupEnd();
// Nested groups
console.group('Application Startup');
console.log('Loading configuration...');
console.group('Database Connection');
console.log('Host: localhost');
console.log('Port: 5432');
console.log('Status: Connected');
console.groupEnd();
console.group('Server Initialization');
console.log('Port: 3000');
console.log('Status: Listening');
console.groupEnd();
console.groupEnd();
// Collapsed group (groupCollapsed)
console.groupCollapsed('Debug Info');
console.log('This group starts collapsed');
console.log('Click to expand');
console.groupEnd();
// Practical example: API request logging
function logApiRequest(method, url, data) {
console.group(`${method} ${url}`);
console.log('Timestamp:', new Date().toISOString());
console.log('Headers:', { 'Content-Type': 'application/json' });
console.log('Body:', data);
console.groupEnd();
}
logApiRequest('POST', '/api/users', { name: 'Alice', email: 'alice@example.com' });
| Method | Description | Use Case |
|---|---|---|
| log() | Standard output | General logging |
| info() | Informational messages | System events |
| warn() | Warning messages | Potential issues |
| error() | Error messages | Errors and exceptions |
| debug() | Debug messages | Development debugging |
| dir() | Object inspection | Detailed object viewing |
| table() | Tabular data display | Arrays and objects |
| time() | Start timer | Performance measurement |
| timeEnd() | End timer | Performance measurement |
| timeLog() | Intermediate timing | Multi-step timing |
| trace() | Stack trace | Debugging call chains |
| assert() | Conditional error | Validation checks |
| count() | Count occurrences | Tracking calls |
| countReset() | Reset counter | Resetting counts |
| group() | Start group | Organizing output |
| groupEnd() | End group | Organizing output |
| clear() | Clear console | Cleaning output |
// Simple custom logger with timestamps
class Logger {
constructor(name) {
this.name = name;
}
_timestamp() {
return new Date().toISOString();
}
log(message, ...args) {
console.log(`[${this._timestamp()}] [${this.name}] [LOG]`, message, ...args);
}
info(message, ...args) {
console.info(`[${this._timestamp()}] [${this.name}] [INFO]`, message, ...args);
}
warn(message, ...args) {
console.warn(`[${this._timestamp()}] [${this.name}] [WARN]`, message, ...args);
}
error(message, ...args) {
console.error(`[${this._timestamp()}] [${this.name}] [ERROR]`, message, ...args);
console.trace();
}
table(data) {
console.log(`[${this._timestamp()}] [${this.name}] [TABLE]`);
console.table(data);
}
time(label) {
console.time(`[${this.name}] ${label}`);
}
timeEnd(label) {
console.timeEnd(`[${this.name}] ${label}`);
}
}
// Usage
const logger = new Logger('MyApp');
logger.info('Application started');
logger.log('Processing user request');
logger.warn('API rate limit approaching');
logger.error('Database connection failed');
logger.time('database-query');
// Simulate query
setTimeout(() => {
logger.timeEnd('database-query');
}, 100);
const users = [
{ id: 1, name: 'Alice', status: 'active' },
{ id: 2, name: 'Bob', status: 'inactive' }
];
logger.table(users);
Explore 500+ free tutorials across 20+ languages and frameworks.