The bare minimum AngularJS

Just really simple of AngularJS as a jsFiddle

by skube

HTML

<script src="http://code.angularjs.org/1.2.10/angular-animate.js"></script>
<div ng-app="myAppModule" ng-controller="someController">
    <!-- Show the name in the browser -->
     <h1>Welcome {{ name }}</h1>

    <p>made by : {{userName}}</p>
    <!-- Bind the input to the name -->
    <input ng-model="name" name="name" placeholder="Enter your name" />
</div>
<script>
    var myApp = angular.module('myAppModule', []);
    myApp.controller('someController', function($scope) {
        // do some stuff here
        $scope.userName = "skube";
    });
</script>