Dependency Injection in Angular 2.0
In this article Torgeir Helgevold will cover some of the details of Angular 2.0 dependency injection and highlight some of the changes from Angular 1.x.
Hotel booking engine with Laravel 5 and AngularJS Part 1
This tutorial is the first of a series, author Andrea Terzani recently published on CODETutorial.io , where she tries to explain how to create a hotel booking system from scratch using Laravel 5.1 and AngularJS. In the booking engine we will use AngularJS to create a single page application, the front end, where the final user can make reservations and the hotel owner can manage rooms, price and reservations. On the backend side we will use Laravel to create all the needed REST API to serve the application.
Enable Animations Explicitly For A Performance Boost In AngularJS
In this article Ben Nadel gives a quick demonstration of how enabling animations can affect your page rendering performance, especially as your AngularJS applications get more complex and interactive.

Learn Angular 2.x in minutes!
Learn Angular 2 in minutes with ng-book 2: the Complete Guide to Angular 2 - Prerelease edition available today!
What to Expect and How to Prepare for Your Angular.js Interview: Part 1
Companies are always looking for talented developers, but in today’s market it’s more important than ever to have a solid foundation in JS frameworks such as Angular, but it’s just as important to be able to demonstrate your knowledge in a job interview. In this new series, E Gen Solutions will be covering some of the questions that you will be expected to answer in Angular interviews, as well as how to prepare to answer questions on a more conceptual level
Generating AngularJS production files with Gulp
AngularJS is one the most powerful and widely used JavaScript frameworks at the moment. Whenever you browse through it’s documentation, you get to a question about code quality and “how to do it right”. Surprisingly, instead of having it’s own style guide, Google is pointing to external, hosted on GitHub. One of the rules there — separate your classes into files. It’s logical: makes your code more readable, however — unusual to older JavaScript coders. To avoid this, we use process automation systems like Gulp to generate production-ready files, by combining separate files into one. Author, Marijus Plančiūnas, explains how to do this.
AngularJS date filter with MomentJS
Dates can be extremely complex things to manage in an application, especially if you also need to deal with multiple localizations. In this article Luis Delgado explains how to integrate the date management library MomentJS into AngularJS.