{"id":18850508,"url":"https://github.com/manthanank/currency-converter","last_synced_at":"2026-05-14T23:10:46.252Z","repository":{"id":281216479,"uuid":"942709823","full_name":"manthanank/currency-converter","owner":"manthanank","description":"Currency Converter App","archived":false,"fork":false,"pushed_at":"2025-04-09T17:33:15.000Z","size":825,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-06T13:41:36.117Z","etag":null,"topics":["angular"],"latest_commit_sha":null,"homepage":"https://currency-converter-manthanank.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manthanank.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["manthanank"],"open_collective":"manthanank","buy_me_a_coffee":"manthanank","patreon":"manthanank"}},"created_at":"2025-03-04T14:48:30.000Z","updated_at":"2025-07-14T04:22:35.000Z","dependencies_parsed_at":"2025-03-07T16:49:18.667Z","dependency_job_id":"c9a1dcf0-b421-43cb-90fc-91ea15cfd21a","html_url":"https://github.com/manthanank/currency-converter","commit_stats":null,"previous_names":["manthanank/currency-converter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/manthanank/currency-converter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Fcurrency-converter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Fcurrency-converter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Fcurrency-converter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Fcurrency-converter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manthanank","download_url":"https://codeload.github.com/manthanank/currency-converter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manthanank%2Fcurrency-converter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274770616,"owners_count":25346211,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-12T02:00:09.324Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular"],"created_at":"2024-11-08T03:29:43.607Z","updated_at":"2026-05-14T23:10:41.203Z","avatar_url":"https://github.com/manthanank.png","language":"TypeScript","funding_links":["https://github.com/sponsors/manthanank","https://opencollective.com/manthanank","https://buymeacoffee.com/manthanank","https://patreon.com/manthanank"],"categories":[],"sub_categories":[],"readme":"# Currency Converter App\n\nThis is a simple currency converter application built using Angular and styled with Tailwind CSS. The app allows users to convert amounts between different currencies using live exchange rates from a public API.\n\n## Features\n\n- Convert between multiple currencies\n- Real-time exchange rates using ExchangeRate-API\n- Dark mode toggle with saved preferences\n- Responsive design with a modern UI\n- Shows converted amount in words\n- Visitor tracking functionality\n- Built with Angular 19 and Tailwind CSS\n\n## Preview\n\n![Currency Converter](/public/image.png)\n\n## Demo\n\nYou can view a live demo of the app [here](https://currency-converter-manthanank.vercel.app/).\n\n## Getting Started\n\n### Prerequisites\n\nEnsure you have Node.js and Angular CLI installed on your machine.\n\n- Node.js: [Download Node.js](https://nodejs.org/)\n- Angular CLI: Install via npm:\n\n  ```bash\n  npm install -g @angular/cli\n  ```\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/manthanank/currency-converter-app.git\n   cd currency-converter-app\n   ```\n\n2. Install the dependencies:\n\n   ```bash\n   npm install\n   ```\n\n3. Install backend dependencies:\n\n   ```bash\n   cd backend\n   npm install\n   ```\n\n4. Create a `.env` file in the backend directory (using `.example.env` as a template):\n\n   ```plaintext\n   cp .example.env .env\n   ```\n\n5. Get an API key from ExchangeRate-API and add it to the backend `.env` file:\n\n   ```plaintext\n   PORT=5000\n   NODE_ENV=development\n   EXCHANGE_RATE_API_KEY=your_api_key_here\n   ```\n\n### Usage\n\n1. Start the backend server:\n\n   ```bash\n   cd backend\n   npm start\n   ```\n\n2. Start the Angular development server:\n\n   ```bash\n   npm start\n   ```\n\n3. Open your browser and navigate to `http://localhost:4200` to view the app.\n4. Use the app to convert currencies by selecting the desired currencies and entering the amount.\n5. The converted amount will be displayed in real-time based on the latest exchange rates.\n\n### Project Structure\n\n```plaintext\ncurrency-converter-app/\n├── backend/                # Backend API\n│   ├── config/             # Configuration files\n│   ├── controllers/        # API controllers\n│   ├── routes/             # API routes\n│   ├── .env                # Environment variables\n│   ├── .env.example         # Example environment variables\n│   ├── .gitignore          # Git ignore file\n│   ├── index.js            # Application entry point\n│   ├── package.json        # Project dependencies\n│   └── README.md           # Backend documentation\n├── public/                # Public assets (images, icons)\n├── src/                    # Frontend application\n│   ├── app/                # Angular components and services\n│   ├── index.html          # Main HTML file\n│   ├── main.ts             # Angular entry point\n│   └── styles.scss         # Global styles\n├── .gitignore             # Git ignore file\n├── angular.json           # Angular configuration\n|── tailwind.config.js      # Tailwind CSS configuration\n├── package.json           # Project dependencies\n├── README.md              # Project documentation\n└── .gitignore             # Git ignore file\n...\n```\n\n### Built With\n\n- [Angular](https://angular.io/) - Web framework\n- [Tailwind CSS](https://tailwindcss.com/) - Utility-first CSS framework\n- [ExchangeRate-API](https://www.exchangerate-api.com/) - Currency exchange rates API\n- [Node.js](https://nodejs.org/) - JavaScript runtime\n- [Express](https://expressjs.com/) - Web framework for Node.js\n\n### License\n\nThis project is licensed under the MIT License.\n\n---\n\nFeel free to contribute or provide feedback!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanthanank%2Fcurrency-converter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanthanank%2Fcurrency-converter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanthanank%2Fcurrency-converter/lists"}