angular1 scaffold

by leozcx

HTML

<div ng-controller='test'>
  {{msg}}
</div>

JavaScript

(function() {
  angular.module('demo', []).controller('test', function($scope) {
    $scope.msg = 'a';
  })
})();