Umami VS counter.dev

Compare Umami vs counter.dev and see what are their differences.

Umami

Umami is a simple, fast, privacy-focused alternative to Google Analytics. (by umami-software)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
Umami counter.dev
112 18
19,654 879
1.9% -
9.8 7.9
4 days ago 3 days ago
TypeScript JavaScript
MIT License GNU Affero General Public License v3.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Umami

Posts with mentions or reviews of Umami. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-22.
  • Umami: Best free Go-To Google Analytics Alternative
    1 project | dev.to | 11 Apr 2024
    Are you tired of relying solely on Google Analytics to track your website's performance? Look no further! Introducing Umami , a powerful and privacy-focused alternative that puts you in control of your analytics data. Umami was founded by three brothers, Mike, Brian and Francis Cao as they were frustarted with using Google Analytics, which dominated and still does the industry of analytics despite of privacy concerns. As it is open-source, Umami quickly started being popular open-source project while still respecting privacy of users. My personal opinion, is that Umami is really easy to setup and use, for smaller projects as my personal website it is of great use. It does not many tracking as GA but it really does its job.
  • 15 open-source tools to elevate your software design workflow
    22 projects | dev.to | 22 Jan 2024
    Link | Demo | Github | License
  • One Worker to Track Them All: Injecting Analytics Scripts into Multiple Websites with Cloudflare Workers
    2 projects | dev.to | 14 Jan 2024
    For a while now, I've been creating mini web tools to test out ideas or as tiny helpers for myself. I usually publish them on individual subdomains, which might not be the best idea, but I like the concept of a short, easy-to-remember URL. Recently, I discovered that some of these tools actually have a few users, which made me consider adding analytics to them. After a bit of research, I settled on umami. It's a great little privacy-conscious tool with exactly what I need and nothing more.
  • Using Analytics on My Website
    7 projects | news.ycombinator.com | 15 Dec 2023
    If you already use Posthog, Web Analytics has been in Public Beta for quite some time.[1]

    If I remember correctly, CloudFlare Analytics does not need you to register your domain with them. I personally feel keeping domain registration coupled with your DNS provider is not a good idea.

    Plausible[2] has an Open Source self-hostable version but is not so updated in sync with their SaaS version.

    Umami[3] is another simple, clean one. And, of course, as many have suggested, Matomo is the other well-established one. If you want to avoid maintaining a hosting routine, a lot do the hosting out of the box these days. PikaPods[4] was good when I tried and played around for a while.

    1. https://posthog.com/docs/web-analytics

    2. https://github.com/plausible/analytics

    3. https://umami.is

    4. https://www.pikapods.com

  • Is there a downside to Vercel Analytics?
    2 projects | /r/nextjs | 7 Dec 2023
    not enough, can confirm, I moved to Umami for ChadNext
  • Creating a more than minor side-project: From planning to release
    1 project | dev.to | 24 Aug 2023
    Think of metrics that will gather good insights for creating more things for the product later and track them using analytics services like umami or others.
  • Building a privacy-friendly, self-hosted application architecture with SvelteKit
    2 projects | dev.to | 16 Jul 2023
    Analytics is something that can easily become a privacy headache. To get around the issues as much as possible, the strategy I've implemented is to self-host the analytics tool Umami (again, via the One click app functionality in CapRover!).
  • Would Umami be a viable option for SaaS within an e-commerce platform designed for sellers?
    1 project | /r/webdev | 5 Jul 2023
    This question is targeted to those who have experience with Umami. Iā€™m wondering if it make sense with a specific configuration.
  • Ask HN: Looking for Google Analytics alternative after v4
    2 projects | news.ycombinator.com | 21 Jun 2023
  • Analytics Solutions?
    1 project | /r/webdev | 9 Jun 2023
    I've self-hosted Umami and works just fine. Check it out here: https://umami.is/

counter.dev

Posts with mentions or reviews of counter.dev. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-02.
  • Ask HN: Is Counter.dev Down?
    2 projects | news.ycombinator.com | 2 Oct 2023
    > Rather than what looks to be an unproven pet project of some developer. If nobody is paying for it, there are no guarantees of uptime or support.

    It's pay what you want. The project is running for three years already, let's see how things go with time.

    Apologies for the long downtime. The issue is being resolved, see here for updates:

    - https://github.com/ihucos/counter.dev/issues/124

  • Ask HN: What do you use to track visitors on your blog?
    3 projects | news.ycombinator.com | 20 May 2023
  • Looking for a free Google Analytics alternative for my side projects
    3 projects | /r/SideProject | 17 May 2023
    - counter.dev -> Something that I need but it has a lack of accuracy and very tiny functionality.
  • Show HN: Counter ā€“ Simple and Free Web Analytics
    1 project | /r/hypeurls | 13 Mar 2023
    7 projects | news.ycombinator.com | 13 Mar 2023
    > Right, and being sessionStorage it's cleared on browser close, and the next time I visit I will be counted as another daily unique visitor right?

    No! There are a few rudimentary mechanisms on top of each other if one of them fails as you described. The /track endpoint sets up http caching. So if sessionStorage fails, you still have that. Then there is also inspecting document.referrer. If it is the page you are already on, then it's definitely not a unique visit.

    > (or why not just a cookie)

    Because cookies are considered "bad". But technically basically just saving a boolean value on the cookie would not be worse from a privacy perspective than using sessionStorage for a boolean value.

    > I personally would rather have the pages I visit use a self-hosted solution gather everything I do, instead of a third-party getting little data from many sites I use. If this script is used across many sites it can be checked server-side against my IP to get my usage. I can never verify what logs they keep and for how long.

    That is a general problem with externally hosted services. You can audit the source code (https://github.com/ihucos/counter.dev) but there is not way to verify that my deployment is as stated. I heard a podcast once that web hosters could guarantee that a deployment is in a specific way and contains a specific code base revision. But such solutions unfortunately do not exist. If you really want to be sure self hosting is the way to go (but somewhat cumbersome)

  • Simple alternative to Google Analytics
    4 projects | /r/Wordpress | 7 Feb 2023
    I think you can go with counter.dev
  • Sensible blocking
    1 project | /r/uBlockOrigin | 27 Oct 2022
    I am providing a free and open source web analytics service: https://github.com/ihucos/counter.dev / counter.dev
  • Counter.dev: Web Analytics made simple
    1 project | news.ycombinator.com | 17 Jun 2022
  • Counter: Free and Open Source, Privacy Respecting Web Analytics
    1 project | /r/webdev | 29 Mar 2022
  • Introducing the Privacy Sandbox on Android
    2 projects | /r/Android | 16 Feb 2022
    From their Github. ā€‹

What are some alternatives?

When comparing Umami and counter.dev you can also consider the following projects:

Plausible Analytics - Simple, open source, lightweight (< 1 KB) and privacy-friendly web analytics alternative to Google Analytics.

GoatCounter - Easy web analytics. No tracking of personal data.

Matomo - Empowering People Ethically with the leading open source alternative to Google Analytics that gives you full control over your data. Matomo lets you easily collect data from websites & apps and visualise this data and extract insights. Privacy is built-in. Liberating Web Analytics. Star us on Github? +1. And we love Pull Requests!

DevUtils-app - All-in-one Toolbox for Developers. Native macOS app.

Fathom Analytics - Fathom Lite. Simple, privacy-focused website analytics. Built with Golang & Preact.

fugu - Fugu is simple, privacy-friendly, open-source and self-hostable product analytics. šŸ”

PostHog - šŸ¦” PostHog provides open-source product analytics, session recording, feature flagging and A/B testing that you can self-host.

Shynet - Modern, privacy-friendly, and detailed web analytics that works without cookies or JS.

Ahoy - Simple, powerful, first-party analytics for Rails

Ackee - Self-hosted, Node.js based analytics tool for those who care about privacy.