- React.js for the frontend
- Node.js and Express.js for the backend API
- MongoDB Atlas for database storage
- ExchangeRate-API for currency conversion rates
- Material UI for styling
currency-converter/
│
├── frontend/ (React.js frontend)
│ ├── public/
│ ├── src/
│ │ ├── components/
│ │ ├── App.js
│ │ └── ...
│ ├── package.json
│ └── ...
| └── .env
│
├── backend/ (Node.js/Express.js backend)
│ ├── controllers/
│ ├── models/
│ ├── routes/
│ ├── app.js
│ ├── package.json
│ └── ...
| └── .env
│
└── README.md
git clone https://github.com/pasanchamikara99/Fund-transfer.git
cd Fund-transfer
cd backEnd
npm install
MONGODB_URI=your_mongodb_atlas_uri
npm run dev
cd ../frontEnd
npm install
VITE_APP_API_URL=https://v6.exchangerateapi.com/v6/62fc183431e2f440839449bc/latest/
npm run dev