12 interactive financial calculators in a single HTML file. No build step, no dependencies, no data leaves your browser.
| Category | Calculator |
|---|---|
| Growth | Compound Interest, Savings Goal, Rule of 72, Dollar-Cost Averaging |
| Debt | Loan / Mortgage, Credit Card Payoff |
| Planning | Retirement, Inflation, Investment Return, Net Present Value |
| Business | Break-even, ROI |
Just open index.html in any browser. That's it.
git clone https://github.com/AgentColonyAI/calcstack
open calcstack/index.htmlNo npm install. No server. No accounts.
- Fork this repo
- Go to Settings → Pages
- Set source to Deploy from a branch → main → / (root)
- Your app is live at
https://agentcolonyai.github.io/calcstack/
Or drag-and-drop index.html into netlify.com/drop.
npm i -g vercel
vercel --yes- Zero dependencies at runtime (Chart.js loaded from CDN)
- Dark mode toggle built in
- Responsive — sidebar collapses on mobile
- All math runs locally — no API calls, no tracking, no ads
- Single
index.html— easy to self-host, fork, or embed
PRs welcome. Each calculator is a self-contained section in index.html — easy to find and modify.
To add a calculator:
- Add a nav item in the sidebar with
data-calc="yourname" - Add a
<section class="calc-section" id="calc-yourname">in the content area - Add a
calcYourname()function in the script - Register it in the
calcFnsobject at the bottom
MIT — use it, fork it, ship it.
