improve(public): re-design landing page a bit
This commit is contained in:
118
apps/public/content/articles/cookieless-analytics.mdx
Normal file
118
apps/public/content/articles/cookieless-analytics.mdx
Normal file
@@ -0,0 +1,118 @@
|
||||
---
|
||||
title: Cookieless Analytics
|
||||
description: Discover how to gather meaningful insights without cookies and why OpenPanel makes it effortless.
|
||||
tag: Guide
|
||||
team: OpenPanel Team
|
||||
date: 2025-06-17
|
||||
cover: /content/cookieless-analytics.jpg
|
||||
---
|
||||
|
||||
The age of tracking everyone, everywhere, with endless cookies is fading fast. Today’s users expect both useful experiences and respect for their privacy. Enter **cookieless analytics**—a smarter way to understand your audience without leaving a trail of crumbs behind. In this guide, we’ll unpack why this approach matters, and how you can get up and running in minutes with OpenPanel.
|
||||
|
||||
## What Is Cookieless Analytics, Really?
|
||||
|
||||
Put simply, it’s tracking without relying on third-party cookies. Instead of stuffing bits of data into a user’s browser, you pivot to methods like:
|
||||
|
||||
* **Server-side events.** Capture interactions directly on your backend.
|
||||
* **Session-based identifiers.** Tie actions together during a visit—then discard the identifier when they leave.
|
||||
* **First-party data.** Use your own signup forms, preferences, and logs.
|
||||
* **Device fingerprints** (used sparingly). Hash together non-identifying signals like screen size and language.
|
||||
|
||||
Each of these respects privacy laws and keeps you off users’ “block” lists—without sacrificing insights.
|
||||
|
||||
## Why Ditch Cookies? Four Big Wins
|
||||
|
||||
### 1. Stay Ahead of Privacy Laws
|
||||
|
||||
Regulations like GDPR and CCPA aren’t going away. By design, cookieless systems:
|
||||
|
||||
* Avoid endless consent banners
|
||||
* Keep you clear of hefty fines
|
||||
* Show customers you take privacy seriously
|
||||
|
||||
### 2. Delight Your Visitors
|
||||
|
||||
Nothing disrupts a first impression like a pop-up you can’t close. With cookieless analytics:
|
||||
|
||||
* Pages load faster
|
||||
* There are no nagging “Accept cookies?” prompts
|
||||
* Your site works even when someone’s browser is locked down
|
||||
|
||||
### 3. Future-Proof Your Data
|
||||
|
||||
Browsers are phasing out third-party cookies (Safari, Firefox already have). A cookieless stack means:
|
||||
|
||||
* No last-minute scrambling when Chrome follows suit
|
||||
* Compatibility with privacy-focused browsers
|
||||
* A sustainable analytics foundation
|
||||
|
||||
### 4. Cleaner, More Trustworthy Insights
|
||||
|
||||
When you rely on your own data sources:
|
||||
|
||||
* You reduce duplicate or incomplete sessions
|
||||
* You focus on active, consenting users
|
||||
* Your reports match your real user base
|
||||
|
||||
## Why OpenPanel Shines for Cookieless Tracking
|
||||
|
||||
We built OpenPanel from the ground up with privacy at its heart—and with features you actually need:
|
||||
|
||||
### Privacy by Default
|
||||
|
||||
* **Zero cookies.** Ever.
|
||||
* **GDPR & CCPA compliant.** Out of the box.
|
||||
* **Transparent data policies.** Your users know what’s collected and why.
|
||||
|
||||
### Powerful, Yet Simple Analytics
|
||||
|
||||
* **Real-time dashboards.** Watch events as they happen.
|
||||
* **Custom events & properties.** Track anything from “add to wishlist” to “video watched.”
|
||||
* **Rich reports.** Dive deep on funnels, retention, and user journeys.
|
||||
|
||||
### Plug-and-Play Setup
|
||||
|
||||
1. **Drop in our script:** Copy–paste, and you’re live.
|
||||
2. **Pick your SDK:** JavaScript, Python, Go… whatever fits.
|
||||
3. **Start tracking in minutes.** No extra configuration.
|
||||
|
||||
### Open Source & Self-Hosted Option
|
||||
|
||||
* **Inspect the code.** Full transparency.
|
||||
* **Self-host if you choose.** Keep data on your servers.
|
||||
* **No vendor lock-in.** Export anytime.
|
||||
|
||||
## Quick Start: Two Steps to Cookieless Insights
|
||||
|
||||
1. **Add the tracking snippet**
|
||||
|
||||
```html
|
||||
<script>
|
||||
window.op = window.op || function(...args) {
|
||||
(window.op.q = window.op.q || []).push(args);
|
||||
};
|
||||
window.op('init', {
|
||||
clientId: 'YOUR_CLIENT_ID',
|
||||
trackScreenViews: true,
|
||||
trackOutgoingLinks: true,
|
||||
trackAttributes: true,
|
||||
});
|
||||
</script>
|
||||
<script src="https://openpanel.dev/op1.js" defer async></script>
|
||||
```
|
||||
|
||||
2. **Fire off your first event**
|
||||
|
||||
```javascript
|
||||
// Simple click
|
||||
window.op('track', 'signup_button_clicked');
|
||||
|
||||
// Purchase with details
|
||||
window.op('track', 'order_placed', {
|
||||
orderId: 'ORD-20250617-001',
|
||||
revenue: 49.95,
|
||||
currency: 'EUR',
|
||||
});
|
||||
```
|
||||
|
||||
That’s it—you’re capturing all the user interactions you need, cookie-free.
|
||||
115
apps/public/content/articles/mixpanel-alternatives.mdx
Normal file
115
apps/public/content/articles/mixpanel-alternatives.mdx
Normal file
@@ -0,0 +1,115 @@
|
||||
---
|
||||
title: Mixpanel Alternatives
|
||||
description: Our top open-source picks if you want to move away from Mixpanel
|
||||
date: 2025-07-18
|
||||
tag: Comparison
|
||||
team: OpenPanel Team
|
||||
cover: /content/cover-mixpanel.jpg
|
||||
---
|
||||
|
||||
> We have tried to keep this list as fair as possible, even though we compete with these tools.
|
||||
|
||||
Analytics tools fall into two main groups:
|
||||
- Web analytics gives you page views, sessions, referrers
|
||||
- Product analytics shows what users do inside your product
|
||||
|
||||
Mixpanel is best known for product analytics. Web tools like Google Analytics tell you about traffic, but a product analytics tool tells you how and when users use your features.
|
||||
|
||||
We start with the key features you need. Then we give you three open-source options.
|
||||
|
||||
## Key product analytics features
|
||||
|
||||
1. **Event tracking**
|
||||
Record any action—signups, clicks, purchases—to see how users behave.
|
||||
|
||||
2. **Funnels**
|
||||
Show each step in a process (for example signup → verify email → first purchase). Find where users drop off so you can improve that step.
|
||||
|
||||
3. **Retention analysis**
|
||||
Find out how many users come back over days or weeks:
|
||||
- **N-day retention**: percent who return after N days
|
||||
- **Rolling retention**: percent active in a set time period
|
||||
- **Cohorts**: compare groups of users who signed up at the same time
|
||||
|
||||
4. **User details**
|
||||
Look at one user’s journey. This helps you fix issues and give users a better experience.
|
||||
|
||||
5. **Flexible dashboards**
|
||||
Build charts and reports to answer any question about your product.
|
||||
|
||||
## How to choose an open-source alternative
|
||||
|
||||
Look at these points when you compare tools:
|
||||
|
||||
| Point | What to check |
|
||||
|-------------------|--------------------------------------------------|
|
||||
| License | True open source (MIT, Apache) or source-only |
|
||||
| Resource needs | CPU and memory for running the tool |
|
||||
| Features | Funnels, retention, user view, session replay |
|
||||
| Setup | Easy install or complex pipeline |
|
||||
| Maintenance | Updates, docs and community support |
|
||||
| Integrations | SDKs for web, mobile, server; data exports |
|
||||
|
||||
## 1. OpenPanel
|
||||
|
||||
You guessed it right, of course we'll promote OpenPanel, it was made solely because we wanted an alternative to Mixpanel. We have used Mixpanel a lot but for a startup we didn't have the cash flow needed to pay the bills. We also didn't need all Mixpanel's features so we decided to build our own platform that combined web & product analytics into one simple, affordable and self-hostable platform.
|
||||
|
||||
**License:** AGPL-3.0 license
|
||||
|
||||
**What you get**:
|
||||
- You get a very good web analytics overview (similar to Plausible, Simple Analytics)
|
||||
- You can track custom events
|
||||
- You can track users
|
||||
- You can create any type of chart you want
|
||||
- You can create funnels and conversions for A/B testing and improve your product
|
||||
- You can create retention charts to understand how long your users stays
|
||||
|
||||
**Good points**:
|
||||
- Low cost and self-hostable
|
||||
- Web and product analytics together
|
||||
- Fast setup and clean interface
|
||||
|
||||
**Drawbacks**:
|
||||
- Fewer third-party integrations
|
||||
- No session-replay or heatmaps yet
|
||||
|
||||
## 2. PostHog
|
||||
|
||||
A full-feature platform with both cloud and self-hosted options.
|
||||
|
||||
**License:** MIT License (core) + Enterprise License (ee/)
|
||||
|
||||
**What you get**:
|
||||
- Funnels, trends, cohorts
|
||||
- Session recordings, feature flags, A/B tests
|
||||
- Plugins (Kafka, Snowflake exports)
|
||||
**Good points**:
|
||||
- Lots of features, active community
|
||||
- Free up to 1 million events per month
|
||||
- Good docs and tutorials
|
||||
|
||||
**Drawbacks**:
|
||||
- Self-host needs high CPU and RAM
|
||||
- Cloud costs rise fast after 1M events
|
||||
- Some learning needed for plugins
|
||||
|
||||
## 3. Snowplow Analytics
|
||||
|
||||
**Overview**
|
||||
A tool that sends event data into your own data warehouse.
|
||||
|
||||
**License:** Apache-2.0 license
|
||||
|
||||
**What you get**:
|
||||
- Open collectors and pipelines
|
||||
- Works with Redshift, BigQuery, Snowflake
|
||||
- Custom schemas via Iglu registry
|
||||
|
||||
**Good points**:
|
||||
- Full control of raw events
|
||||
- Scales to billions of events
|
||||
- Good for teams with data-warehouse skills
|
||||
|
||||
**Drawbacks**:
|
||||
- Setup is complex (Kafka, Spark, Hadoop)
|
||||
- No built-in dashboards (need Looker or similar)
|
||||
Reference in New Issue
Block a user