{"id":23871306,"url":"https://github.com/chandankhamitkar/karcha","last_synced_at":"2026-05-16T11:04:47.457Z","repository":{"id":270240146,"uuid":"903610465","full_name":"ChandanKhamitkar/Karcha","owner":"ChandanKhamitkar","description":"Angular Based Expense Tracker Web-Application","archived":false,"fork":false,"pushed_at":"2024-12-31T13:01:13.000Z","size":184,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-21T00:59:58.368Z","etag":null,"topics":["angular","angular19","tailwindscss"],"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/ChandanKhamitkar.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":"2024-12-15T03:56:44.000Z","updated_at":"2024-12-31T13:01:16.000Z","dependencies_parsed_at":"2024-12-29T17:19:00.842Z","dependency_job_id":"641868fb-cdd8-40c5-8ed7-3668c555e65d","html_url":"https://github.com/ChandanKhamitkar/Karcha","commit_stats":null,"previous_names":["chandankhamitkar/karcha"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ChandanKhamitkar/Karcha","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChandanKhamitkar%2FKarcha","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChandanKhamitkar%2FKarcha/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChandanKhamitkar%2FKarcha/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChandanKhamitkar%2FKarcha/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChandanKhamitkar","download_url":"https://codeload.github.com/ChandanKhamitkar/Karcha/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChandanKhamitkar%2FKarcha/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33100321,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"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":["angular","angular19","tailwindscss"],"created_at":"2025-01-03T14:31:10.517Z","updated_at":"2026-05-16T11:04:47.442Z","avatar_url":"https://github.com/ChandanKhamitkar.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ExpenseTracker\n\nThis project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.0.5.\n\n\n# Learnings\n\n### Intall Angular CLI\n```\nnpm install -g @angular/cli\n```\n\n### Create new project\n```\nnpm install -g @angular/cli\n```\n\n### To create component run:\n```\nng g components components/card\n\n// This will generate files that are requried\n    - Such as \n        - card.component.css\n        - card.component.html \n        - card.component.ts ( Writing entire logic ( script ) such importing javascript will be written here )\n        - card.component.spec.ts\n```\n\n- app.component.html routes for **'/'** path\n## Angular inbuilt methods | Functions | Packages used :\n\n#### 🔸Signal\nUsed for managing reactivity and optimizing change detection.\n```\nSyntax:\nvariableName = signal\u003ctype\u003e(default-value);\n\nExample:\ntitle = signal\u003cstring\u003e('Karcha');\n```\n\n#### Oninit\nngOnInit is called only once during the **component's lifecycle**, making it ideal for tasks that need to be performed only once.\n\n```\nSyntax:\nasync ngOninit(){\n    // perform your task here\n}\n\nngOninit(): void{\n    // perform your task here\n}\n```\n\n\n\n\n## Development server\n\nTo start a local development server, run:\n\n```bash\nng serve\n```\n\nOnce the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.\n\n## Code scaffolding\n\nAngular CLI includes powerful code scaffolding tools. To generate a new component, run:\n\n```bash\nng generate component component-name\n```\n\nFor a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:\n\n```bash\nng generate --help\n```\n\n## Building\n\nTo build the project run:\n\n```bash\nng build\n```\n\nThis will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.\n\n## Running unit tests\n\nTo execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:\n\n```bash\nng test\n```\n\n## Running end-to-end tests\n\nFor end-to-end (e2e) testing, run:\n\n```bash\nng e2e\n```\n\nAngular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.\n\n## Additional Resources\n\nFor more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandankhamitkar%2Fkarcha","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchandankhamitkar%2Fkarcha","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandankhamitkar%2Fkarcha/lists"}