Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@mindpowered/carloancalculator

mindpowered12MIT0.0.7

Car Loan Auto Loan Payment Calculator - Calculate financing on a new car including trade-in and taxes

readme

carloancalculator

Car Loan Auto Loan Payment Calculator - Calculate financing on a new car including trade-in and taxes

Build Status

Contents

Source Code and Documentation

About

This package aims to calculate the following:

  • Given the price of a new car, what is the payment?
  • Given a certain payment, what is the max price of the new car?

The calculation takes into account:

  • The interest rate of the car loan
  • The term (length) of the car loan
  • Applicable Taxes
  • Trade-in value and amount owing
  • Down payment

Requirements

  • ES6
  • npm

Third-party dependencies may have additional requirements.

Installation

npm

You can retrieve the carloancalculator package using npm https://www.npmjs.com/. After initializing your packages.json file in your project’s directory with npm init, you can install the carloancalculator package with

npm i @mindpowered/carloancalculator --save

hint: the --save option will add the newly installed dependency in your packages.json file.

package.json

You can also add the package directly to your packages.json file.

...

Usage


let mpcclc = require('@mindpowered/carloancalculator');
const {CarLoanCalculator} = mpcclc;

let clc = new CarLoanCalculator();
clc.CalcPayments(33429, 4500, 0, 10000, 2000, 0.7, 3.99);

Support

We are here to support using this package. If it doesn't do what you're looking for, isn't working, or you just need help, please Contact us.

There is also a public Issue Tracker available for this package.

Licensing

This package is released under the MIT License.