Documentation

Install on HTML / static sites

Add Open Analytics to a HTML / static sites site: where the snippet goes and how to verify it.

The short way

From your project folder, let the CLI detect HTML / static sites and place the snippet itself:

Terminal
npx getopen init

It asks for your tracking key, writes the tag, and prints which file it changed. It is idempotent, so running it on a project that already has the snippet leaves it alone. Prefer to do it by hand? The steps below are exactly what it does.

Add it to HTML / static sites

Paste the snippet into the <head> of every page. On a static site with shared includes, the shared header is the right place.

index.html
<script
  async
  src="https://c.getopen.so/oa.js"
  data-key="YOUR_TRACKING_KEY"
  data-collector="https://c.getopen.so"
></script>

Deploy and open the site at the address you gave the dashboard. The realtime view shows the visit within seconds; historical charts fill moments later. Loading it on your dev server first still tells you something: the dashboard's waiting screen names the host it saw the tag load on, and the tracker writes one line in the browser console when that host is not one the site counts. Visits themselves are only counted from the site's own domain, because localhost cannot be listed: deploy to see data, or empty the allowed domains list in Settings while you install. Nothing arriving? The troubleshooting page walks through the usual reasons.

Where to next