UNPKG

generator-ngfs

Version:

Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node

8 lines (7 loc) 269 B
'use strict'; angular.module('<%= scriptAppName %>') .controller('<%= classedName %>Ctrl', ['$scope', '$http', function ($scope, $http) { $http.get('/api/awesomeThings').success(function(awesomeThings) { $scope.awesomeThings = awesomeThings; }); }]);