Angular: Empty Fiddle
http://angularjs.org/
by gion_13
HTML
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<div ng-app="myApp">
<div ng-controller="myCtrl">
Hello, {{name}}!
</div>
</div>
JavaScript
angular
.module('myApp', [])
// controller here
.controller('myCtrl', function($scope) {
$scope.name = 'gion';
})
// directive here
.directive('myDirective', function(){
})
// factory here
.factory('myService', function(){
});