Skip to content

Real Time EMI Calculator allows users to calculate the interest amount that needs to be paid towards the EMIs on monthly basis in real time. This calculates the interest and principal amounts and provides an amortization schedule to the user, which shows the break-up of these amounts to be repaid towards principal and interest along with their r…

Notifications You must be signed in to change notification settings

subishsubash/emi-calculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Real Time EMI Calculator

What it does

Real Time EMI Calculator allows users to calculate the interest amount that needs to be paid towards the EMIs on monthly basis in real time. This calculates the interest and principal amounts and provides an amortization schedule to the user, which shows the break-up of these amounts to be repaid towards principal and interest along with their respective balances throughout the tenure of the loan. It acts like a handy tool to simulate EMIs for different types of loans such as Home loan, Car loan, Personal loan etc.


Solution Description

  • The simulation of EMI payment calculation helps user to have a clear or complete idea on how much amount to be paid monthly for the requested loan. The main objective of this project is to develop an effective EMI calculator as a deliverable using Microservices.
  • Standalone Microservices based solution, which helps the banks to access specific APIs in which they can configure the required parameters like amount, interest rates and tenure for different types of loans.
  • Any Banks can easily integrate this solution in their web site (by just embedding in the iframe) without writing even a single line of code. Therefore, the bank customers can have a clear view on entire of loan EMI structure within milliseconds even before applying it.

API Exposed from Loan Catalog Microservice

Method Operation Id Description
POST createLoanType Create a loan type in Loan Catalog Microservice
PUT updateLoanType Update a loan type in Loan Catalog Microservice
GET getLoanType Fetch the loan Information from Loan Catalog MS.
API Will return all the loan’s details by passing All in param
DELETE deleteLoanType Delete the loan type and its detail from microserice
POST createCalculatorBoundary Configure parameter details for given loan type
PUT updateCalculatorBoundary Update the parameter details for given loan type
GET getCalculatorBoundary Fetch the parameter details for a loan type

Languages & Frameworks

  1. Backend
  • Java
  • Spring Boot
  • MongoDB
  1. FrontEnd

Depolyment

docker pull mongo
docker pull subash12396/emi-calculator:emi-calculator-ui
docker pull subash12396/emi-calculator:emi-calculator
docker run --name mongodb -d mongo
docker run -p 8080:80 --name emi-calculator-ui-container -d subash12396/emi-calculator:emi-calculator-ui
docker run -p 9090:9090 --link mongodb:mongo --name emi-calculator-container  -d subash12396/emi-calculator:emi-calculator

Testing

Microservice APIs

http://192.168.99.100:9090

User Interface

http://192.168.99.100:8080

Note: Replace the IP with docker enviornment

For more API details refer swagger

About

Real Time EMI Calculator allows users to calculate the interest amount that needs to be paid towards the EMIs on monthly basis in real time. This calculates the interest and principal amounts and provides an amortization schedule to the user, which shows the break-up of these amounts to be repaid towards principal and interest along with their r…

Topics

Resources

Stars

Watchers

Forks