https://github.com/simran1002/credit-approval-system
Credit Approval System is a Node.js application built with Express.js framework for managing loans and customer data, along with an API for loan approval and payment processing.
https://github.com/simran1002/credit-approval-system
Last synced: 8 months ago
JSON representation
Credit Approval System is a Node.js application built with Express.js framework for managing loans and customer data, along with an API for loan approval and payment processing.
- Host: GitHub
- URL: https://github.com/simran1002/credit-approval-system
- Owner: simran1002
- Created: 2024-04-06T17:48:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-09T19:35:03.000Z (about 2 years ago)
- Last Synced: 2025-10-05T15:43:06.057Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Credit Approval System
Credit Approval System is a Node.js application built with Express.js framework for managing loans and customer data, along with an API for loan approval and payment processing.
## Setup and Initialization
### Setup
- Node.js with Express.js framework is used for the backend.
- No frontend is required for this application.
- Data models are built to handle customer and loan data.
- The application and its dependencies are dockerized.
- MySQL or PostgreSQL database is used for data persistence.
### Initialization
- Initial data ingestion is done from provided Excel files (`customer_data.xlsx` and `loan_data.xlsx`) using background workers.
## API Endpoints
1. /register
2. /check-eligibility
3. /create-loan
4. /view-loan/:loan_id
5. /make-payment/:customer_id/:loan_id
6. /view-statement/:customer_id/:loan_id