1.0.4 • Published 9 years ago

ltv v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
9 years ago

LTV

Lifetime value calculator for SAAS subscription models. Calculations are made using a constant churn rate, month-over-month.

LTV = ARPA (Average MRR per Account) * Customer Lifetime

Install

npm install ltv

Usage

To calculate LTV, you must provide an array of monthly data containing users and churn for that period of time.

var ltv = require('ltv');
var churn = [
  {
    users: 25,
    churn: 3
  },
  {
    users: 87,
    churn: 8
  }
];

new ltv(4500, churn).calculate(); // 94.87
1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago