{"id":14986871,"url":"https://github.com/chrisjwalk/angular-cli-netcore-ngrx-starter","last_synced_at":"2025-04-11T23:11:08.776Z","repository":{"id":27991905,"uuid":"115811177","full_name":"chrisjwalk/angular-cli-netcore-ngrx-starter","owner":"chrisjwalk","description":"Angular demo app using Nx build system, esbuild, @ngrx/signals, Angular Material, Angular PWA, Tailwind CSS, and .NET 8.0 + Microsoft.AspNetCore.SpaServices.Extensions","archived":false,"fork":false,"pushed_at":"2024-04-13T14:56:16.000Z","size":8168,"stargazers_count":61,"open_issues_count":0,"forks_count":23,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-04-14T04:53:32.041Z","etag":null,"topics":["angular","angular-cli","angular-material","angular-pwa","angular-signals","demo","dotnet","dotnet-8","ngrx","ngrx-platform","ngrx-signals","nrwl-nx","nx","pwa","signals","visual-studio","vscode"],"latest_commit_sha":null,"homepage":"https://angularclinetcorengrxstarter.azurewebsites.net/","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/chrisjwalk.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}},"created_at":"2017-12-30T17:11:38.000Z","updated_at":"2024-04-20T15:44:10.735Z","dependencies_parsed_at":"2023-10-01T17:26:32.311Z","dependency_job_id":"446d5fb9-0210-4bfe-8b5f-063f63f79070","html_url":"https://github.com/chrisjwalk/angular-cli-netcore-ngrx-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisjwalk%2Fangular-cli-netcore-ngrx-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisjwalk%2Fangular-cli-netcore-ngrx-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisjwalk%2Fangular-cli-netcore-ngrx-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisjwalk%2Fangular-cli-netcore-ngrx-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chrisjwalk","download_url":"https://codeload.github.com/chrisjwalk/angular-cli-netcore-ngrx-starter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248492868,"owners_count":21113163,"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-cli","angular-material","angular-pwa","angular-signals","demo","dotnet","dotnet-8","ngrx","ngrx-platform","ngrx-signals","nrwl-nx","nx","pwa","signals","visual-studio","vscode"],"created_at":"2024-09-24T14:13:43.397Z","updated_at":"2025-04-11T23:11:08.745Z","avatar_url":"https://github.com/chrisjwalk.png","language":"TypeScript","readme":"[![Build status](https://freshpondmedia.visualstudio.com/FreshPondMediaGit/_apis/build/status/chrisjwalk.angular-cli-netcore-ngrx-starter)](https://freshpondmedia.visualstudio.com/FreshPondMediaGit/_build/latest?definitionId=43)\n\n# Nx + Angular + .NET 9.0\n\nThis is basic demo of how to use a full stack [Nx monorepo](https://nx.dev/getting-started/tutorials/angular-monorepo-tutorial) with [Angular](https://angular.dev) and .NET 9.0 with [Microsoft.AspNetCore.SpaServices.Extensions](https://docs.microsoft.com/en-us/aspnet/core/client-side/spa/angular) and a demo Azure pipeline for Azure DevOps.\n\n## Demo\n\nSee a live demo here: [https://angularclinetcorengrxstarter.azurewebsites.net/](https://angularclinetcorengrxstarter.azurewebsites.net/)\n\n## Getting Started?\n\n- **Make sure you have at least Node 20.x or higher (w/ npm 10+) installed!**\n- **This repository uses ASP.NET 9.0, which has a hard requirement on .NET SDK 9.0.x. Please install these items from [https://dotnet.microsoft.com/download](https://dotnet.microsoft.com/download)**\n\n## Visual Studio 2022\n\nMake sure you have .NET 9.0 installed and/or the latest VS2022.\n\n## Visual Studio Code\n\n\u003e Note: Make sure you have the C# extension \u0026 .NET Debugger installed.\n\n    npm install\n\n## Serve Development App\n\n```\nnpm start\n```\n\nBoth the api (dotnet) and web app (Angular) will build and run in dev mode. Open your browser on http://localhost:4200/ to see the Angular app, or https://localhost:60254/swagger to see the api documentation generated by Swagger.\n\n## Serve Production App (PWA enabled)\n\n```\nnpm run serve:prod\n```\n\n## Lint\n\n```\nnpm run lint\n```\n\n## Unit Tests\n\nRun unit tests by executing:\n\n```\nnpm run test\n```\n\nPlease note that for test coverage you need dotnet-coverage to be installed:\n\n```\ndotnet tool install --global dotnet-coverage\n```\n\nMore information is available on https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-test\n\n## End-to-end Tests\n\nRun e2e tests by executing:\n\n```\nnpm run e2e\n```\n\n## Build Production App\n\nBuild the production Angular app and Publish the release .NET app, run:\n\n```\nnpm run build:prod\n```\n\nThe contents of the. `/dist` folder should now contain something that can be deployed to and Azure web service or IIS instance.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisjwalk%2Fangular-cli-netcore-ngrx-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrisjwalk%2Fangular-cli-netcore-ngrx-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisjwalk%2Fangular-cli-netcore-ngrx-starter/lists"}