Angular multiple environments

Why multiple environments? When developing your front end application, you often deal with multiple environments. You write your code locally, but then when you deploy you manually have to change the URL’s to your API. Ideally we want to have multiple environments setup that we no longer have to worry...

Angular.js components with ES6

Many people have been using ES6 together with Angular in previous versions. But Angular 1.5 brings us components, which are very similar to the once that will be used in Angular 2. In this example I will be showing you how to create a menu component and use it within...

Angular.js big SPA using ES6 (1/2)

This guide might help if you: want to create a big Single Page Application (SPA) using Angular. don’t have much experience with big SPA’s. don’t know how to structure your SPA. want to be able to ensure quality. don’t want to create your own standards. Also see: Part 2 Intro...

Big Spa With Angular And Es6 1 2

This is the second post of a series about big SPA with Angular and ES6. In the first post we’ve set a couple of things up to improve upon. This post will go deeper into tricks and tips that will help once your application becomes bigger. Before we continue coding,...