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 - Responding to backend changes
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 like typings to manage and install them. After 2.0 we moved to npm@types, but what does that really mean?...
NodeJs Azure Web App continuous delivery via Github and some Kudu magic
This post is about how to configure the continuous deployment settings for your NodeJs application in a Web App using Kudu. You will learn how to configure your Azure Web App to automate deployment...
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 add on the language very well and some of them can be very help...
Loading JSON files with SystemJS module loader
I really hate this mess on JavaScript modules. We have AMD, CommonJS or UMD to support both. Then ES6 came into the game. But what about .json files on browser? There are different ways to load the...