Feature
A free expense tracker that does the arithmetic exactly
Chillar's is a free expense tracker for the web. You log an expense with an amount, a category and an account; it stores the amount as an exact decimal, groups your history by day, and shows income, expenses and the balance for any period you choose.
Logging an expense takes one line
The quick-add box parses a whole transaction from plain text, so the common case never opens a form. Type the amount, a title, an account and a category and press enter.
- `12.50 coffee @cash #food`: an expense of 12.50 from Cash, categorised Food
- `+2400 salary @bank`: income, because of the leading plus
- `(45+18)/2 dinner @card`: the amount field is a calculator, so splitting a bill needs no mental arithmetic
Every amount is an exact decimal
Money is stored as NUMERIC(19,4) in Postgres and handled with big.js in the browser. There is no floating-point arithmetic anywhere in the money path, which is why a long list of small transactions still adds up to the number you would get on paper.
The history is grouped the way you think about it
Transactions are grouped by day with income and expense totals per day, and the whole ledger is virtualized, so ten thousand rows scroll at the speed of ten. Filters for type, account, category, amount range, keywords and tags all live in the URL, so a view you built is a link you can send.
A dropped connection does not stop you
Chillar's needs the internet to sign in and to sync, but not to keep working once it is open. It installs as a progressive web app, pages you have visited render from cache when the network is gone, and a transaction you log with no signal waits in the browser until you reconnect. Each one carries a client-generated id, so a retry can never double it.
Frequently asked questions
- Is Chillar's free?
- Yes. Chillar's is free to use. There is no paid tier and no feature held back behind an upgrade prompt; advertising is what pays for the service.
- Can I use the expense tracker offline?
- Yes. Chillar's installs as a progressive web app: previously visited pages render from cache with no connection, and transactions you add offline are queued locally and synced when you are back online.
- Can I import my existing expenses?
- Yes. Chillar's imports CSV files with a guided mapping step for nine common apps, including Money Manager, Wallet by BudgetBakers, Spendee, Monefy and Bluecoins, and it imports Ivy Wallet backup files directly.
Related reading
- A budget planner that tells you what is leftWeekly, monthly and yearly budgets scoped to categories and accountsRead
- A money manager for accounts, transfers and net worthAccounts, transfers, net worth and a savings buffer in one placeRead
- How to track expenses (and still be doing it in three months)A five-step method for tracking expenses that survives the second week: pick a capture habit, categorise coarsely, reconcile weekly, review monthly.Read
- How to make a monthly budget from your own numbersBuild a monthly budget from three months of your own spending instead of a template: find your baseline, set limits that bind, and review it once a month.Read
Start tracking in about two minutes
Free to use, and everything you enter is exportable. No card and no trial.