Every application needs some configuration data. For ASP.NET Core applications, we can pull configuration data from JSON files, environment variables, or anywhere else we want. For Angular applications, we can define environment-specific configuration files that are automatically wired up for us based on our build configuration. But what do we do when we need to…
try-catch-FAIL
Tag: <span>angular</span>
Using Angular 6 with Visual Studio 2017
Angular 6 is out! That’s great, except that the Visual Studio 2017 Angular templates haven’t been updated yet. BUT, all is not lost, because it’s actually (relatively) easy to upgrade. Let’s take a look!
Easy Angular Notifications with ASP.NET Core
Displaying feedback to your users is one of those common, cross-cutting (boring!) requirements that should be baked in to your application’s framework. That’s just as true with old-school ASP.NET MVC as it is with ASP.NET Core and Angular. In this post, I’ll show you how you can bake this capability in to a modern Angular…
Improving the Dev Experience with ASP.NET Core and Angular CLI
In my previous article, I showed how we could easily create an Angular 5 CLI app inside of an ASP.NET Core application. There was one big thing that bugged me about that approach though: our ASP.NET Core application and our Angular CLI application were hosted separately during local development. After spending some time with the…
Creating a New ASP.NET Core 2.1 Preview Project with Angular
The Angular project template has been updated in ASP.NET Core 2.1-preview. The new template makes several improvements over the old one. Let’s take a look!
Creating a New Project with ASP.NET Core and Angular
You would think that creating an ASP.NET Core application that uses Angular would be easy-peasy. After all, there’s an “Angular” option in the new project wizard for an ASP.NET Core application! Sadly, reality is a cruel mistress, and if you take that approach to creating your next Angular + ASP.NET Core project, you’ll be in…
Why I Chose Angular
Choosing a front-end framework is no small task these days. There are a lot of options out there, each with pros and cons. When I decided I wanted to move to a “next gen” framework, I surprised myself by going with a framework that I initially had a lot of negative feelings about: Angular. In…