0.0.7 • Published 3 years ago

@mindpowered/carloancalculator v0.0.7

Weekly downloads
4
License
MIT
Repository
-
Last release
3 years ago

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.

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

4 years ago