JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-controller="BadController">
{{hello}}
</div>
JavaScript
angular.module("myApp", [])
// BadController cannot be invoked, because
// the dependencies to be injected are not
// explicitly listed.
.controller("BadController", function($scope, $http, $filter) {
$scope.hello = 'world'
});
angular.bootstrap(document, ['myApp'], {
strictDi: true
});