Posts in category
2X

Starting Angular Projects With Nx
In this blog post I want to write down one possible way to start and architecture Angular projects using the Nx. I know that there are a lot of guides and even books out there but to have it written down in one place for me with all the current commands I am using building larger Angular applications I am creating this blog post.

Moving From TravisCI to GitHub Actions
In this blog post I want to write about how you can move from TravisCI to GitHub Actions.

Deploy a Hugo Static Site to Azure With GitHub Actions
Here you put your excerpt for the Blog Post.

Deploy a .NET ASP.NET Core Application to Azure With GitHub Actions
In this blog post, I want to write about how you can deploy your ASP.NET Core Web App running on .NET 5 to Azure with GitHub Actions.

Securing an Electron App Implemented With Angular Using OIDC and OAuth2
In this blog post, I want to explain how you can secure an Electron app written in Angular with OIDC and OAuth2 using IdentityServer4 as the Secure Token Server.

Securing a Cordova App Implemented With Angular Using OIDC and OAuth2
The blog post explains how to secure a Cordova app written in Angular using OIDC and OAuth2 with IdentityServer4 as the Secure Token Server. It covers configuring the authentication flow, modifying the authentication config for mobile devices, configuring the Cordova project, and handling the authentication callback in the Angular app.

Uploading Files to Azure Blob Storage With Angular and ASP.NET Core
This blog post explains how to upload files from an Angular application to an Azure Blob Storage using an ASP.NET Core WebAPI. It covers creating the Azure Blob Storage, setting up the ASP.NET Core WebAPI with the necessary NuGet package and configuration, and creating an Angular app with an UploadService to communicate with the backend and upload files to the Azure Blob Storage.

Building a Sample Todo App With SignalR Using Blazor WebAssembly
This blog post provides a step-by-step guide on how to create a Todo application using ASP.NET Core Blazor. The tutorial covers the frontend implementation, including forms, container components, and presentational components synchronized with SignalR. The post also mentions the availability of the backend code in a GitHub repository for reference.

Authentication in Angular With NgRx and ASP.NET Core
The blog post discusses how to add authentication and authorization to an Angular app using NgRx. It builds upon a previous blog post that covered the setup using OIDC and OAuth2 with Angular and ASP.NET Core. The post focuses on configuring the Angular application and implementing the necessary stores, actions, reducers, effects, services, and selectors using NgRx.

Authentication and Authorization With Angular and ASP.NET Core Using OIDC and OAuth2
This blog post explains how to add a login feature to an Angular application and secure it using OpenID Connect (OIDC) and OAuth2. It demonstrates the integration of an Angular app with an ASP.NET Core WebAPI and Identity Server for authentication and authorization purposes.