Tel Map

Tag: angularjs

2016-06-28 | Angular |

Angular2 RC3 Router

Some days ago, the new Angular2 RC3 release candidate (and also some days earlies RC2) has been released. Again, some changes were made to the Angular2 structure that everyone needs to update in their Angular2 applications to become compatible to the new version…. more

2016-06-20 | Angular |

Angular2 with NPM and Webpack

This article demonstrates how to set up an Angular2 project with Webpack. The setup also supports Typescript, Less, CSS packages like Twitter Bootstrap and Fonts e.g. FontAwesome. It describes how to set up all the different plugins, loaders etc. I needed for… more

2016-05-31 | Angular |

Basics of Reactive Events in Angular2

In this article I want to show how to use the “Reactive Events” library RxJS to handle asynchronous event processing in AngularJS2. In many Javascripts frameworks asynchronous events are handled by either providing a callback function to be called, or be retrieving… more

2016-04-11 | ASP .NET |

302 Redirect VS 401 Unauthorized – ASP .NET 5 Identity

302 API Redirect Problem If you make a request to a REST service and are not logged in, by default ASP .NET 5 Identity returns a 302 Redirect to login page. This is great if you are visiting the URL of a controller… more

2016-03-29 | Angular |

Angular2 Http Authentication Interceptor

In my Angular2 application I want to be redirected to the login page whenever I get a 401 response during an Ajax call. Therefore I want to intercept all Ajax calls and check for the response code. In addition to that I… more