Base minimum directive

by cmyworld

HTML

<div ng-app='myApp'>
    <div hello-world></div>
</div>

JavaScript

angular.module('myApp', []).directive('helloWorld', function () {
    return {
        template: '<strong>Hello World</strong>'
    };
});