{"id":47871788,"url":"https://github.com/brmendez/crypto-lens","last_synced_at":"2026-04-04T00:54:54.788Z","repository":{"id":335552267,"uuid":"1146264214","full_name":"brmendez/crypto-lens","owner":"brmendez","description":"Real-time cryptocurrency market tracker built with React, TypeScript, and Vite. Fetches live data from CoinGecko API with light/dark theme toggle.","archived":false,"fork":false,"pushed_at":"2026-03-12T19:22:09.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-04T00:54:52.260Z","etag":null,"topics":["coingecko-api","cryptocurrency","css-modules","frontend","react","typescript","vite"],"latest_commit_sha":null,"homepage":"https://crypto-lens.onrender.com/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brmendez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-30T20:54:31.000Z","updated_at":"2026-03-16T20:10:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/brmendez/crypto-lens","commit_stats":null,"previous_names":["brmendez/crypto-lens"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brmendez/crypto-lens","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brmendez%2Fcrypto-lens","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brmendez%2Fcrypto-lens/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brmendez%2Fcrypto-lens/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brmendez%2Fcrypto-lens/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brmendez","download_url":"https://codeload.github.com/brmendez/crypto-lens/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brmendez%2Fcrypto-lens/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31383635,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T23:20:52.058Z","status":"ssl_error","status_checked_at":"2026-04-03T23:20:51.675Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["coingecko-api","cryptocurrency","css-modules","frontend","react","typescript","vite"],"created_at":"2026-04-04T00:54:53.132Z","updated_at":"2026-04-04T00:54:54.770Z","avatar_url":"https://github.com/brmendez.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# CryptoLens\n🔗 **Live Demo:** https://crypto-lens.onrender.com/\n\nCryptoLens is a minimal, real-time cryptocurrency market tracker built with Vite, React, and TypeScript. It fetches live market data from CoinGecko and displays key metrics for top coins in a clean, theme-switchable interface.\n\n## Features\n\n- **Live Market Data:** Fetches up-to-date prices and 24h changes for major cryptocurrencies using the CoinGecko API.\n- **Minimal UI:** No icons, images, or extra styling—just the essentials for fast, distraction-free tracking.\n- **Theme Toggle:** Switch between light and dark modes. Theme preference is saved in localStorage.\n- **TypeScript \u0026 React:** Built with modern React and TypeScript for reliability and maintainability.\n- **Vite Powered:** Fast development and build times with Vite.\n\n## Getting Started\n\n### Prerequisites\n- Node.js (v18 or newer recommended)\n- npm or yarn\n\n### Installation\n\n```bash\n# Clone the repository\n$ git clone https://github.com/your-username/crypto-lens.git\n$ cd crypto-lens\n\n# Install dependencies\n$ npm install\n# or\nyarn install\n```\n\n### Running Locally\n\n```bash\n# Start the development server\n$ npm run dev\n# or\nyarn dev\n```\n\nOpen [http://localhost:5173](http://localhost:5173) in your browser to view the app.\n\n## Project Structure\n\n```\ncrypto-lens/\n├── public/\n├── src/\n│   ├── components/\n│   │   ├── CoinListItem.tsx\n│   │   ├── CryptoTracker.tsx\n│   │   ├── fetchCoinGeckoMarkets.ts\n│   │   ├── LoadingSkeleton.tsx\n│   │   ├── ThemeContext.tsx\n│   │   ├── types.ts\n│   │   └── styles/\n│   │       ├── CoinCard.module.css\n│   │       ├── CryptoTracker.module.css\n│   │       ├── LoadingSkeleton.module.css\n│   │       └── theme.module.css\n│   ├── App.tsx\n│   ├── main.tsx\n│   └── index.css\n├── index.html\n├── package.json\n├── tsconfig.json\n├── vite.config.ts\n└── README.md\n```\n\n## API Reference\n\n- [CoinGecko Markets API](https://www.coingecko.com/en/api/documentation)\n\n## Customization\n\n### Adding More Coins\nTo add more coins or change the data source, update the API URL in `src/components/fetchCoinGeckoMarkets.ts`.\n\n### Styling\nComponent styles are organized using CSS Modules in `src/components/styles/`:\n- `theme.module.css` - Shared theme variables and color palette\n- Component-specific `.module.css` files are colocated with their components\n- Global styles (resets, fonts, base elements) are in `src/index.css`\n\nTo customize colors or theme, edit the CSS variables in `src/components/styles/theme.module.css`.\n\n## License\n\nThis project is MIT licensed.\n\n---\n\n*CryptoLens: Fast, simple, and open-source crypto market tracking.*\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrmendez%2Fcrypto-lens","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrmendez%2Fcrypto-lens","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrmendez%2Fcrypto-lens/lists"}