I am new to requireJS, and I wanted to get a simple starter \'hello worldish\' project up and running. I\'m missing something though, because I get angular is not defi
You have not told the GreetCtrl
that it depends upon angular
thus it is undefined
. Try changing the GreetCtrl
to be like this
define(['angular'], function(angular){
angular.module( 'ReqApp.GreetCtrl', [])
.controller( 'GreetCtrl', function GreetCtrl ($scope) {
$scope.greeting = "greetings puny human";
});
});