DEV Community

Ryan Caldwell
Ryan Caldwell

Posted on

I Got Tired of Opening 5 Different Sites to Plan My Nutrition — So I Built One Free Hub

I'm a web developer who also happens to care about fitness. And something has bugged me for years.

Every time I want to recalculate my nutrition plan, I open five different websites:

  1. One for TDEE
  2. One for macros
  3. One for calorie deficit targets
  4. One for protein intake
  5. One for body fat percentage

Half of these sites now require an account. Most are drowning in ads. A couple have started paywalling features that used to be free — for running a math formula.

These are calculators. They take numbers in and spit numbers out. There is no reason they need an account, an app download, or a subscription.

So I built all of them into one place.

14 Free Health & Fitness Calculators

Anytools.io/health — everything in one spot, zero friction:

For Nutrition Planning

  • TDEE Calculator — Uses the Mifflin-St Jeor equation (the most accurate BMR formula according to the Academy of Nutrition and Dietetics). Enter your stats, get maintenance calories plus targets for weight loss and gain.
  • Macro Calculator — Protein, carbs, and fat split based on your specific goal: weight loss, maintenance, muscle gain, or custom ratios.
  • Calorie Deficit Calculator — Set your target weight, get the daily deficit needed, and see a realistic timeline.
  • Protein Intake Calculator — Based on body weight and activity level. Shows the range recommended by current sports nutrition research.

For Training

  • Heart Rate Zone Calculator — Uses the Karvonen method (based on heart rate reserve), which is significantly more accurate than the generic 220-minus-age formula. Shows all five training zones with target ranges.
  • One Rep Max Calculator — Enter your working weight and reps, get estimated 1RM using three different formulas (Epley, Brzycki, Lombardi) so you can compare.
  • Pace Calculator — For runners: enter any two of distance, time, and pace to calculate the third. Includes race time projections for 5K, 10K, half marathon, and marathon.
  • VO2 Max Estimator — Estimates aerobic fitness level based on your running performance.

For Body Composition

  • Body Fat Calculator — US Navy method using simple tape measurements. No calipers needed.
  • Ideal Body Weight Calculator — Compares four different formulas (Devine, Robinson, Miller, Hamwi) side by side so you can see the range.
  • BMI Calculator — With context about what the number actually means and its limitations.

Other Tools

  • Water Intake Calculator — Based on body weight, activity level, and climate.
  • Sleep Calculator — Calculates optimal bedtimes based on 90-minute sleep cycles.
  • BAC Calculator — Blood alcohol content estimator.

Why I Built These as a Web Developer

I could have built a mobile app. But I didn't, for specific reasons:

No download friction. Nobody wants to install an app just to run a TDEE calculation once. A website you can bookmark works on every device, every platform, instantly.

Client-side processing. Every calculation runs in your browser. Your body measurements, weight, and health data never leave your device. I didn't want to build a tool that collects sensitive health data on a server — that's unnecessary for a calculator.

No accounts. There's nothing to sign up for because there's nothing to store. You enter numbers, you get results, you close the tab. If you want to recalculate in three months, you just come back.

No ads. The calculators are fast and clean because they don't need to load 47 ad scripts before showing you a number.

The Formulas Are Transparent

Something that bothers me about most online calculators: they don't tell you which formula they're using. You get a number with no context.

Every calculator on Anytools shows which equation it uses, cites the research behind it, and in several cases lets you compare multiple formulas side by side. The TDEE calculator uses Mifflin-St Jeor. The heart rate zones use Karvonen. The 1RM calculator shows Epley, Brzycki, and Lombardi simultaneously.

If you care about the math, it's there. If you don't, you still get accurate results.

What Else Is On the Site

The health calculators are part of a larger platform. Anytools.io also has:

  • 26 developer tools — JSON formatter, JWT decoder, regex tester, Base64, password generator, etc.
  • 24 design tools — Color palette generator, CSS generators (flexbox, grid, glassmorphism), contrast checker, etc.
  • 16 calculators — Compound interest, loan, mortgage, tip, unit converter, etc.

Same principles everywhere: free, no accounts, client-side, no tracking.


If you use any of these calculators regularly, I'd genuinely like to know: what's the one fitness/nutrition calculator you wish existed but doesn't? I'm actively building new tools and user requests get prioritized.

Top comments (0)