Hello World
<body>
<div ng-app="firstApp">
<div ng-controller="firstController as ctrl">
{{ ctrl.message }}
</div>
</div>
</body>
angular.module('firstApp', [])
.controller('firstController', [firstController])
function firstController() {
var vm = this
vm.message = 'Hello World'
}
Documentation / Tutorials
Run a temporal server with brackets or installing python(2.x.x) and typunc in the command promp python -m SimpleHTTPServer
// Replace X.Y.Z with the value of the angular version that you are using
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/X.Y.Z/angular-route.js" />
// app.js
angular.module("myApp", ["ngRoute"])