Financial.js
A lightweight financial calculator library - https://ju66ernaut.github.io/financial.js/
Installation
npm install financialjs --save
or
- Download or fork the repository from GitHub.
- Place 'financial.js' in your project and include it in your application.
Example Usage
var Financial = ; // Calculate Compound Interest // Example: account with a $1500 original balance earns 12%/year // and is compounded monthly (1%/month) for 12 months Financial; // => 190.24
Notes
In most cases, Financial.js allows for both decimals and whole number percentages for functions that require 'rate' parameters
Financial; // => 190.24 Financial; // => 190.24
Financial.js is inspired by Essam Al Joubori's finance.js - http://financejs.org/