Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 701 Bytes

File metadata and controls

47 lines (29 loc) · 701 Bytes

Event-Driven Banking Microservices System

This project demonstrates a simplified microservices architecture for a banking system.

Services

Fraud Detection Service

Analyzes transaction data and calculates fraud risk levels.

Endpoint: POST /fraud/check

Notification Service

Simulates sending SMS and email notifications after transactions.

Endpoint: POST /notify

Architecture

Client / Postman

    |

Fraud Service (3003)

Notification Service (3004)

Technologies Used

Node.js
Express.js
REST APIs

Running the Services

Fraud Service

cd fraud-service
npm install
node server.js

Notification Service

cd notification-service
npm install
node server.js