npm install @console-warden
.env
file in your project root and add your Warden API key:WARDEN_PUBLIC_KEY=test_your_api_key_here
// Import at the top of your entry file
import '@console-warden';
// Now use anywhere in your application
console.text('User signup completed');
console.error('Payment processing failed', { orderId: '12345' });
console.warn('API rate limit approaching');
console.log('Debug information');
// Track function calls
console.call('processPayment', { amount: 99.99 });
// Track and alert on function calls
console.callText('criticalOperation', { userId: 'usr_123' });