JSPM

financialjs

1.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 10
  • Score
    100M100P100Q31274F
  • License MIT

A JavaScript library for calculations related to all things money

Package Exports

  • financialjs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (financialjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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 = require('financialjs');
  
  // Calculate Compound Interest
  // Example: account with a $1500 original balance earns 12%/year
  // and is compounded monthly (1%/month) for 12 months
  Financial.CompoundInterest(1500, 1, 12);
  // => 190.24

Notes

In most cases, Financial.js allows for both decimals and whole number percentages for functions that require 'rate' parameters

  Financial.CompoundInterest(1500, 1, 12); // => 190.24
  Financial.CompoundInterest(1500, 0.01, 12); // => 190.24 

Financial.js is inspired by Essam Al Joubori's finance.js - http://financejs.org/