LoggerLizard is lightweight, fast, and respects your visitors' privacy. No cookies, no bloat, just the insights you need. Made for developers who value simplicity.
No credit card required β’ 1,000 page views/month free
Click events below to see them tracked in real-time
Built for simplicity. No training required. Just install and start tracking.
See your traffic as it happens with 30-second updates
Track visitors by country and city with automatic location detection
Know where your visitors come from - referrers, social, search
Track page views, clicks, forms, and custom events with one line
GDPR compliant by default. No annoying consent popups needed
Under 1KB. Won't slow down your site or hurt your SEO
Add one script tag. That's it. Page views are tracked automatically.
<script data-project="YOUR_PROJECT_ID" data-api-key="YOUR_PUBLIC_KEY" src="https://api.loggerlizard.com/js/tracker.js"> </script>
That's it. Page views are tracked automatically.
npm install @loggerlizard/lizard # or yarn add @loggerlizard/lizard # or bun add @loggerlizard/lizard
Usage in your app:
import Lizard from '@loggerlizard/lizard';
const liz = new Lizard('llz_pub_YOUR_API_KEY', {
autoTrack: true, // Auto-tracks page views, clicks, etc.
debug: false
});
// Track custom events
liz.log('button_click', { button: 'signup' });
liz.log('purchase', { plan: 'pro', amount: 19 });Track custom events with script tag:
<button onclick="window.lizard.log('button_click')">
Click me
</button>
<script>
// Track anywhere in your JS
window.lizard.log('signup', { plan: 'pro' });
window.lizard.log('purchase', { amount: 19 });
</script>Get your keys from the dashboard after signing up