{"id":24442067,"url":"https://github.com/sbrunomello/simdex-web","last_synced_at":"2026-04-09T20:49:00.848Z","repository":{"id":204193504,"uuid":"711272966","full_name":"sbrunomello/simdex-web","owner":"sbrunomello","description":"interface of cryptocurrency exchange simulator platform.","archived":false,"fork":false,"pushed_at":"2023-11-21T02:01:43.000Z","size":37149,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-20T21:46:50.184Z","etag":null,"topics":["angular","authentication","cryptocurrency","exchange","frontend","integration","interface","nodejs","opensource","plataform","simulator","typescript"],"latest_commit_sha":null,"homepage":"","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/sbrunomello.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}},"created_at":"2023-10-28T18:21:43.000Z","updated_at":"2023-10-31T01:46:41.000Z","dependencies_parsed_at":"2023-12-01T22:45:28.731Z","dependency_job_id":null,"html_url":"https://github.com/sbrunomello/simdex-web","commit_stats":{"total_commits":17,"total_committers":2,"mean_commits":8.5,"dds":"0.17647058823529416","last_synced_commit":"1e8b28e5dfc887da9e1ea9dbf675c8d0d97d9cba"},"previous_names":["sbrunomello/simdex-web"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbrunomello%2Fsimdex-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbrunomello%2Fsimdex-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbrunomello%2Fsimdex-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbrunomello%2Fsimdex-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sbrunomello","download_url":"https://codeload.github.com/sbrunomello/simdex-web/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243510832,"owners_count":20302457,"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","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","authentication","cryptocurrency","exchange","frontend","integration","interface","nodejs","opensource","plataform","simulator","typescript"],"created_at":"2025-01-20T21:44:43.029Z","updated_at":"2025-12-28T20:34:43.286Z","avatar_url":"https://github.com/sbrunomello.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simdex Web – Angular UI for Simulated DEX Platform\n\n**Simdex Web** is the frontend application for the [Simdex](https://github.com/sbrunomello/simdex) platform – a simulation of a decentralized cryptocurrency exchange. Built with Angular, it offers a responsive dashboard where users can register, log in, view real-time prices, and interact with coin data in a realistic exchange layout.\n\n---\n\n## 🌐 Live Features\n\n- 🧾 **Login and Registration** (connected to Spring Boot backend)\n- 📈 **Coin Price Tracker** with live data\n- 🪙 **Coin Table** for top market pairs\n- 🔄 Modular UI structure with dashboard, sidebar, and components\n- 🧪 Designed for realistic crypto UI simulation\n\n---\n\n## 🛠 Technologies Used\n\n- Angular `^16`\n- TypeScript\n- SCSS / CSS\n- RxJS (reactive state)\n- Angular Routing\n- Capacitor-ready (for mobile builds)\n- RESTful communication with backend API\n\n---\n\n## 🧩 Project Structure Highlights\n\n```\n/src/app\n│\n├── core/services\n│   ├── auth.service.ts        → Login/registration logic\n│   └── coin.service.ts        → Fetches coin price data\n│\n├── modules/dashboard\n│   ├── dashboard.component.ts\n│   └── sidebar/               → App navigation\n│\n├── shared/components\n│   ├── coin-price/            → Displays price from API\n│   ├── coin-table/            → Lists crypto pairs\n│   ├── login/                 → Login form\n│   ├── register/              → Registration form\n│   ├── navbar/                → Top navigation\n│   ├── footer/                → Footer content\n│\n├── directives/\n│   └── outside-click.directive.ts → Detects external click (e.g. dropdown)\n```\n\n\u003e Components follow modular and testable Angular best practices.\n\n---\n\n## ▶️ How to Run Locally\n\n### Prerequisites\n\n- Node.js (v18+ recommended)\n- Angular CLI (`npm install -g @angular/cli`)\n- Backend API running ([Simdex Backend](https://github.com/sbrunomello/simdex))\n\n### Steps\n\n```bash\ngit clone https://github.com/sbrunomello/simdex-web.git\ncd simdex-web\nnpm install\nng serve\n```\n\nAccess the app at:  \n`http://localhost:4200`\n\n---\n\n## 💡 API Integration\n\nAll data is fetched from the Spring Boot backend running at `http://localhost:8080`. It includes:\n\n- `POST /auth/register`\n- `POST /auth/login`\n- `GET /api/v2/price` → Real-time BTC price (via CMC)\n\n---\n\n## 🧪 Development Notes\n\n- Supports component unit testing with Karma + Jasmine\n- Includes styles split per component (CSS or SCSS)\n- Easy to extend with lazy-loaded modules\n\n---\n\n## 🚀 Future Roadmap\n\n- [ ] Wallet simulation with fake balance\n- [ ] Token buy/sell interaction (demo only)\n- [ ] Visual charts with TradingView or Chart.js\n- [ ] Internationalization (i18n)\n- [ ] PWA support and mobile build via Capacitor\n\n---\n\n## 📬 Contact\n\n- [GitHub](https://github.com/sbrunomello)  \nDeveloped with by Mello\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbrunomello%2Fsimdex-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsbrunomello%2Fsimdex-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbrunomello%2Fsimdex-web/lists"}