Posts tagged with AngularJS

Featured image for "More fun with AngularJS $http: a loading indicator"
JavaScript

More fun with AngularJS $http: a loading indicator

Ever wanted to create a "Loading, please wait..." indicator when your data is loading over your REST service? With $http you can easily set something up like this, without having to create a lot of overhead in your controllers.

Read more →
Featured image for "AngularJS $http and dates"
JavaScript

AngularJS $http and dates

while Date objects are a part of the standard JavaScript specs, it's not a part of the JSON spec. In this tutorial we'll explain how to properly consume dates from your REST API with AngularJS.

Read more →
Featured image for "E2E testing AngularJS applications with Protractor"
JavaScript

E2E testing AngularJS applications with Protractor

In this tutorial we'll go into detail about end to end testing (E2E) with AngularJS and Protractor

Read more →
Featured image for "Using Sinon.js while testing AngularJS applications"
JavaScript

Using Sinon.js while testing AngularJS applications

With Sinon.js you can easily set up stubs and spies. This can be a real benefit when testing AngularJS apps because of all the different components.

Read more →
Featured image for "Setting up AngularJS applications with Yeoman"
JavaScript

Setting up AngularJS applications with Yeoman

In this article I will write a small AngularJS application and use Yeoman to set it all up.

Read more →
Featured image for "Executing Jasmine tests with Maven"
Java

Executing Jasmine tests with Maven

In modern webapps, you will be using more than just Java. You will write JavaScript code too. With Maven + Jasmine you can test your JavaScript code.

Read more →
Featured image for "Rapid prototyping with Spring Boot and AngularJS"
Java

Rapid prototyping with Spring Boot and AngularJS

When people say "Java" they usually think "slow". However, with Spring Boot and AngularJS you can create prototypes really fast.

Read more →
Featured image for "Building modern webapps using Spring Data REST and AngularJS"
Java

Building modern webapps using Spring Data REST and AngularJS

In this example I will setup a web project using Spring Data REST. The client-side of the application will be written using AngularJS.

Read more →
Featured image for "How to drink gulp.js"
JavaScript

How to drink gulp.js

Gulp is the new build system for your webapps. It's powered by streams which makes it fast. In this article I will use it to build my Angular app.

Read more →
Featured image for "Using WebSockets with Spring, AngularJS and SockJS"
Java

Using WebSockets with Spring, AngularJS and SockJS

This tutorial explains how to write a small chat application using WebSockets with the Spring framework, AngularJS and SockJS.

Read more →