The module is Angular's overall container. It contains all controllers as well as all other AngularJS code. The Angular module is created with the following code in a javascript file:
var app = angular.module("myApp", []);
There are other ways to write this, but we'll stick to this one for now.