{"id":21206280,"url":"https://github.com/sara-pixie/new-angular-project","last_synced_at":"2026-04-17T04:33:19.105Z","repository":{"id":205760835,"uuid":"714998885","full_name":"Sara-pixie/new-angular-project","owner":"Sara-pixie","description":"New project to practice Angular 16; later converted to 17","archived":false,"fork":false,"pushed_at":"2023-11-13T13:05:54.000Z","size":2492,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-21T15:32:27.988Z","etag":null,"topics":["angular","angular-material","angular16","angular17","no-spec-files","public-api","public-apis","standalone"],"latest_commit_sha":null,"homepage":"https://master--peppy-eclair-b9d0b2.netlify.app/","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/Sara-pixie.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":"2023-11-06T09:26:56.000Z","updated_at":"2024-03-03T04:31:06.000Z","dependencies_parsed_at":"2025-01-21T15:41:48.154Z","dependency_job_id":null,"html_url":"https://github.com/Sara-pixie/new-angular-project","commit_stats":null,"previous_names":["sara-pixie/new-angular-project"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sara-pixie%2Fnew-angular-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sara-pixie%2Fnew-angular-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sara-pixie%2Fnew-angular-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sara-pixie%2Fnew-angular-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sara-pixie","download_url":"https://codeload.github.com/Sara-pixie/new-angular-project/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243658274,"owners_count":20326467,"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","angular-material","angular16","angular17","no-spec-files","public-api","public-apis","standalone"],"created_at":"2024-11-20T20:55:05.424Z","updated_at":"2025-10-18T15:56:46.628Z","avatar_url":"https://github.com/Sara-pixie.png","language":"TypeScript","readme":"# New Angular 17 Project\n\nThis project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 16.2.9. \u003cbr\u003e\nAfter 10.11.2023 the project is upgraded to Angular 17! see [Update Guide](https://update.angular.io/?l=3\u0026v=16.0-17.0) \u003cbr\u003e\n- `ng update @angular/core@17 @angular/cli@17`\n- `ng update @angular/material` \u0026 `ng update @angular/cdk` + any other commands listed when you run `ng update`\n- if modifying Angular Material theme/typography make sure to update those files [like this](https://github.com/Sara-pixie/new-angular-project/commit/5a5c5b0266e725894a1312d47b780820f1e97cfb)\n- run `ng serve` to see if anything else breaks\n\nAngular 16 code is staying on [this branch](https://github.com/Sara-pixie/new-angular-project/tree/angular-16) and won't be updated anymore.\n\n#### When adding main pages\nSee [this commit](https://github.com/Sara-pixie/new-angular-project/commit/b5d17be7fa59c1565cea739c6b29772fb94b2d50) as example of adding a main page to the platform.\n\n## About Angular 17\n- [Angular 17 Blog](https://blog.angular.io/introducing-angular-v17-4d7033312e4b)\n- [Angular.dev](https://angular.dev/)\n\n## About Angular 16\n- [Angular Blog](https://blog.angular.io/angular-v16-is-here-4d7a28ec680d)\n- [Medium blog](https://medium.com/@evincedevelop/whats-new-in-angular-16-a-deep-dive-into-the-latest-features-5985d477003c)\n- [Standalone](https://angular.io/guide/standalone-migration) see [`angular.json`](https://github.com/Sara-pixie/new-angular-project/blob/master/angular.json) file for `schematics`\n- [Routes Input Binding](https://angular.io/api/router/withComponentInputBinding) `withComponentInputBinding` as part of the `provideRouter` in [`main.ts`](https://github.com/Sara-pixie/new-angular-project/blob/master/src/main.ts) file\n- Translate Service (use `npm install @ngx-translate/core --save` and `npm install @ngx-translate/http-loader --save` commands to install, then add the `TranslateModule.forRoot(translateModuleConfig)` with the config const to `importProvidersFrom` in [`main.ts`](https://github.com/Sara-pixie/new-angular-project/blob/master/src/main.ts) file). In every standalone component.ts you should import `TranslateModule` with `imports: [TranslateModule]`\n\n## Angular Material\n- [Getting Started](https://material.angular.io/guide/getting-started)\n- [Components](https://material.angular.io/components/categories)\n- [icons](https://fonts.google.com/icons) use `\u003cmat-icon fontIcon=\"iconName\"\u003e\u003c/mat-icon\u003e`\n- To override material styling (because they make weird headings h1-6) create [new scss file](https://github.com/Sara-pixie/new-angular-project/blob/master/src/theme.scss) and make sure to link it in [`angular.json`](https://github.com/Sara-pixie/new-angular-project/blob/master/angular.json) file under `styles` **CHANGES FROM 16 to 17** see [this commit](https://github.com/Sara-pixie/new-angular-project/commit/5a5c5b0266e725894a1312d47b780820f1e97cfb)!\n- Added `Material Carousel` see this [folder](https://github.com/Sara-pixie/new-angular-project/tree/master/src/app/components/carousel) for details (the code has been borrowed from another repository and tweaked to fit into Angular 16 project)\n\n## Public API\n- [Options](https://github.com/public-apis/public-apis)\n\nChoosen theme = Books Search with Cat Facts on home page:\n- [meowfacts](https://github.com/wh-iterabb-it/meowfacts)\n- [Google Books API](https://developers.google.com/books/docs/v1/reference/volumes)\n\n## Netlify build\n- [YouTube tutorial](https://www.youtube.com/watch?v=4992d7KQz0k)\n- [deployed page](https://master--peppy-eclair-b9d0b2.netlify.app/)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsara-pixie%2Fnew-angular-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsara-pixie%2Fnew-angular-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsara-pixie%2Fnew-angular-project/lists"}