This post is part of a series on ASP.NET Core 2.0 Authentication and I am going to talk about authorization policies, something different from what we've seen so far in the series, as most of posts...
Blog is under migration to Github Pages, some components and links may not work. Migration may take few weeks depending on time I have to invest in fixing each issue. Sorry for the inconvenience.
ASP.NET Core 2.0 Authentication with local logins - Implementing custom authorization policies
ASP.NET Core 2.0 Authentication with local logins - Responding to backend changes
ASP.NET Core 2.0 makes it very easy and straightforward to setup a cookie authentication mechanism in your application. Framework provides numerous ways to achieve that, with or without ASP.NET Cor...
ASP.NET Core 2.0 Authentication with local logins - Implementing claims transformation
ASP.NET Core 2.0 makes it very easy and straightforward to setup a cookie authentication mechanism in your application. Framework provides numerous ways to achieve that, with or without ASP.NET Cor...
ASP.NET Core 2.0 Cookie Authentication - Local logins
ASP.NET Core 2.0 makes it very easy and straightforward to setup a cookie authentication mechanism in your application. Framework provides numerous ways to achieve that, with or without ASP.NET Cor...
Testing AngularJS UI-Router routes
Tests are important. In our AngularJS applications we have tons of stuff to test, we have unit tests on components, filters, directives and other AngularJS features, we have tests on templates and ...
ES6 generators and async/await in Typescript
Some exciting features Javascript has developed during the latest versions (ES6, ES2016) are without doubt the generator functions and the async/await support. These features exist in Typescript fo...
Socket.io integration tests with chai and mocha
Ah, all the goodies that you are building need to be of highest quality. But how is quality possible when no tests are in place? If you have followed along, this very website promotes test driven d...
Migrating from typings to npm @types
Typescript definitions. What a confusing topic. Prior to Typescript 2.0 we were using tools liketypingsto manage and install them. After 2.0 we moved tonpm@types, but what does that really mean? An...
NodeJs Azure Web App continuous delivery via Github and some Kudu magic
This post is about how toconfigure the continuous deploymentsettings for your NodeJs application in a Web App using Kudu. You will learn how to configure your Azure Web App to automate deployments ...
C# 7 out variables, tuples & other new features
C# 7 is available on new Visual Studio 2017 and comes with some new features. I wouldn't call them 'revolutionary' features, but they addon the language very well andsome of them can be very helpfu...