fetch our products from an API? http://api.example.com/products.json (function(){
var app = angular.module('store', [ 'store-products' ]);
app.controller('StoreController', function(){
this.products = ???; . . .
});
})(); { name: '. . .', price: 1.99, . . . },
{ name: '. . .', price: 1.99, . . . },
{ name: '. . .', price: 1.99, . . . }, [ . . .
]