Skip to content
AldeaCode Logo
Numeration100% local · 0 bytes sent

Online Tally Counter

Track counts in your browser without installing anything: create as many named counters as you need, increment or decrement with one click, set custom steps, see a combined total, and reset whenever. Persisted to localStorage so your tally survives a page reload.

Loading…

How it works

Each counter is an object with id, label, value and step. State lives in React and is mirrored to localStorage on every change. The total card sums all counters live. No backend, no account, nothing leaves the browser.

How to use it

  1. Add named counters

    Click add to create a new counter and give it a label. Spawn as many as you need, votes/items/scores all in the same view.

  2. Set the step per counter

    Each counter has its own step. Default 1 for clicks, 5 or 10 for batches. The step applies to both plus and minus.

  3. Tally with one click

    Press plus or minus to increment or decrement. The combined total card sums every counter live, so you see the running grand total.

  4. Counts persist locally

    Every change writes to localStorage. Refresh the tab and your counters survive. Hit reset to wipe one counter or all of them.

Use cases

Count votes during a quick survey.

Track inventory items across categories.

Score a sports match across teams.

Count pomodoros, mistakes or any habit.

Workshop facilitation: count Yes / No / Maybe responses.

When NOT to use it

  • If you need cross-device sync. State lives in localStorage on this device only; nothing is uploaded.
  • For tens of thousands of taps per minute. The UI is React-rendered, not optimised for high-frequency input. Use a hardware counter.
  • When you can't afford to lose the count. localStorage is wiped by aggressive privacy modes, browser data resets and incognito.

Your data never leaves your browser

Every utility runs entirely on your device. Nothing is uploaded, nothing is stored on a server. You can disconnect from the internet and they keep working.

Frequently asked questions

Related tools