There are a bunch of "dotnet" templates readily available for use. That's all fine and dandy! But what about creating your templates? Learn how easy it is to ship your runnable projects as templates for your team.
GraphQL with .NET Core (Part - XII: Relay)
To make a Relay compliant GraphQL server, you have to follow some specifications. Fortunately, GraphQL-Dotnet community has provided a library to take on the heavy burden.
Angular Pipe for Handling Boolean Types
Angular pipes are great for data transformation. json, async, datetime are some of the largely used built-in pipes. Learn how to make a custom one for your need.
Shipping Angular Elements as Web Components
Creating custom elements in Angular and exporting them as web components is real simple. See how I made a custom subscription element in Angular and used it as native HTML element.
Image Upload in Angular with Preview & Progress
In Angular, you can upload a file and at the same time get the progress by enabling the reportProgress flag on HttpRequest object. Source code available in Github.
Asynchronous Validation in Angular
It's very easy to set up asynchronous validation in Angular Form. You can check whether provided email/date/name etc. already exists in the server with an HTTP call.
Angular Form Validation on Blur and Submit
updateOn: 'blur' and updateOn: 'submit' are the options we were really craving for while working with Angular Forms. Now it's available out of the box and you don't need any custom implementations.
Versioning for ASP.NET Core Web API
If you are adding API versioning to your existing API project, you can tell ASP.NET Core to treat the undercoated controllers and actions to have version 1.0 by default. To do that, configure the AddApiVersioning() service with AssumeDefaultVersionNumberUnspecified flag.