{"id":19446651,"url":"https://github.com/lksmrck/personal-crypto-tracker","last_synced_at":"2026-04-07T20:33:33.012Z","repository":{"id":60798805,"uuid":"528134743","full_name":"lksmrck/personal-crypto-tracker","owner":"lksmrck","description":"Personal fullstack project of crypto investments tracker - Typescript, React, Node.js, MongoDB","archived":false,"fork":false,"pushed_at":"2023-03-19T21:02:45.000Z","size":39509,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-17T20:31:57.827Z","etag":null,"topics":["authentication","express","fullstack","google-sign-in","javascript","material-ui","mongodb","mongoose","node","react","redux","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/lksmrck.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}},"created_at":"2022-08-23T19:27:24.000Z","updated_at":"2024-10-01T12:39:50.000Z","dependencies_parsed_at":"2025-02-25T08:51:37.139Z","dependency_job_id":null,"html_url":"https://github.com/lksmrck/personal-crypto-tracker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lksmrck/personal-crypto-tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lksmrck%2Fpersonal-crypto-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lksmrck%2Fpersonal-crypto-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lksmrck%2Fpersonal-crypto-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lksmrck%2Fpersonal-crypto-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lksmrck","download_url":"https://codeload.github.com/lksmrck/personal-crypto-tracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lksmrck%2Fpersonal-crypto-tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31528593,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["authentication","express","fullstack","google-sign-in","javascript","material-ui","mongodb","mongoose","node","react","redux","typescript"],"created_at":"2024-11-10T16:14:39.501Z","updated_at":"2026-04-07T20:33:32.980Z","avatar_url":"https://github.com/lksmrck.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔎 Personal Crypto Tracker\n\n## 🔸 Key Features\n\nSimple personal project, that allows user to:\n\n- Watch actual cryptocurrency prices and statistics on Dashboard\n- Login and add transactions of his buys and sells of cryptocurrencies\n- User's profit or loss, actual holding amount and average purchase price are calculated and updated based on added transactions and transaction prices (Holdings page)\n- User's transactions (Transaction history page) and Holdings (Holdings page) are logged and saved into database\n\n## 🔸 Demo\n\nYou can try the demo [HERE](https://lksmrck.github.io/personal-crypto-tracker/)\n\n```diff\n- Actual info: If you want to try this app, you have to run it locally on your machine based on steps below, because of expired backend hosting on Heroku.\n- Based on that, users are currently not able to register and login using username and pw. Users are however still able to login via Google Auth, but don't see their holdings and transactions (as these are fetched from the currently unhosted BE).\n```\n\n![App demo](./readMe/cryptoTrackerGIF.gif)\n\n## 🔸 Configuration and setup\n\nIn order to run this project locally, simply fork and clone the repository or download as zip and unzip on your machine.\n\n- Open the project in your prefered code editor.\n- Go to terminal -\u003e New terminal (If you are using VS code)\n\n#### 1. Client\n\n```\n$ cd client\n```\n\nCreate .env file in the root of your client directory. Add:\n\n```\nREACT_APP_GOOGLE_CLIENT_ID = *your google client ID*\nREACT_APP_API = http://localhost:8000\n```\n\n```\n$ npm install (to install client-side dependencies)\n\u0026 npm start (to start the client)\n```\n\n#### 2. Server\n\n```\n$ cd server\n```\n\nCreate .env file in the root of your server directory. Add:\n\n```\nMONGODB = *your mongoDB cluster URL*\nJWT_SECRET = *your secret string for JWT*\n```\n\n```\n$ npm install (to install server-side dependencies)\n\u0026 nodemon index.js (to start the server)\n```\n\n## 🔸 Data\n\nData from [CoinGecko](https://www.coingecko.com/) API is used in this project.\n\n## 🔸 Main technologies used\n\n- \u003cb\u003eFrontend:\u003c/b\u003e\n  [React](https://reactjs.org/), [Typescript](https://www.typescriptlang.org/)\n- \u003cb\u003eBackend:\u003c/b\u003e\n  [NodeJS](https://nodejs.org/en/), [Express](https://expressjs.com/)\n- \u003cb\u003eDatabase:\u003c/b\u003e\n  [MongoDB](https://www.mongodb.com/)\n- \u003cb\u003eHosting:\u003c/b\u003e\n  [GH pages](https://pages.github.com/), [Heroku](https://dashboard.heroku.com/)\n\n- \u003cb\u003eOther:\u003c/b\u003e\n  [Redux](https://redux.js.org/) (for state management), Material UI, Styled components, React Icons, Axios, React-router-dom, JWT (for authentication), bcryptjs (for data encryption), …\n\n## 🔸 Known issues\n\n- Google sign in vs. Form sign in with same gmail is not considered as same user\n\n## 🔸 Future\n\n- Potential extension to use also stocks data\n- Implementation of charts for movements\n- Profit and loss statement for specified period based on added transactions and prices\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flksmrck%2Fpersonal-crypto-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flksmrck%2Fpersonal-crypto-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flksmrck%2Fpersonal-crypto-tracker/lists"}