npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

retirement-calculator

v2.0.0

Published

A versatile retirement financial planning tool for calculating savings, inflation impact, and withdrawal strategies.

Downloads

52

Readme

Retirement Calculator

A TypeScript library for retirement financial calculations.

Installation

npm i retirement-calculator

What it does

  • Calculate contributions needed to reach a target balance
  • Project compound interest with regular contributions
  • Model age-based return strategies (glidepaths)
  • Account for inflation impact on future balances

Quick Start

import { RetirementCalculator } from 'retirement-calculator';

const calculator = new RetirementCalculator();

// Basic compound interest with monthly contributions
const result = calculator.getCompoundInterestWithAdditionalContributions(
  10000,  // starting balance
  500,    // monthly contribution
  30,     // years
  0.08,   // 8% annual return
  12,     // contribution frequency (monthly)
  12      // compounding frequency (monthly)
);

console.log(`Final balance: $${result.balance.toFixed(2)}`);
console.log(`Total contributions: $${result.totalContributions.toFixed(2)}`);
console.log(`Interest earned: $${result.totalInterestEarned.toFixed(2)}`);

Dynamic Glidepath Calculations

Model changing investment strategies over time, like target-date funds.

const result = calculator.getCompoundInterestWithGlidepath(
  25000,  // starting balance
  1000,   // monthly contribution
  25,     // starting age
  65,     // retirement age
  {
    mode: 'fixed-return',
    startReturn: 0.10,  // 10% at age 25
    endReturn: 0.055    // 5.5% at age 65
  }
);

console.log(`Final balance: $${result.finalBalance}`);

Three glidepath modes available:

  • fixed-return: Linear decline from aggressive to conservative returns
  • allocation-based: Equity/bond blending like target-date funds
  • custom-waypoints: User-defined age/return or age/allocation targets

Return Metrics

The calculator provides two return metrics:

  • effectiveAnnualReturn: Overall account growth including contributions
  • averageAnnualInterestRate: Investment performance only (compare against benchmarks)

Examples

See the examples directory for complete scenarios:

Run any example:

npx ts-node examples/basic-retirement-gap-analysis.ts

See it in Action

This package powers the calculators at Common Cents Academy. Try them out to see what's possible.

Documentation

Limitations

  • Assumes steady returns (real markets fluctuate)
  • No Monte Carlo simulation yet
  • No tax modeling

License

MIT