<!DOCTYPE html>
<html ng-app="app">

  <head>
    <script data-require="angular.js@1.4.3" data-semver="1.4.3" src="https://code.angularjs.org/1.4.3/angular.js"></script>
    <link rel="stylesheet" href="style.css" />
    <script src="script.js"></script>
  </head>

  <body>
    <div ng-controller="MainController">
      {{name}}
    </div>
  </body>

</html>
var module = angular.module('app', []);

//It will improve the performance by hiding the angular ng-binding ,ng-isolated-binding etc.. directives from dom so the compile lifecycle will not iterate it.
module.config(['$compileProvider', function ($compileProvider) {
  $compileProvider.debugInfoEnabled(false);
}]);

module.controller('MainController', function($scope) {
  $scope.name = 'DebugInfoEnabled Test';
})
/* Styles go here */