UNPKG

ng-directive-gulp-boilerplate

Version:

Angular reusable directive development boilerplate using gulp and karma

18 lines 571 B
<!doctype html> <html ng-app="demo"> <head> <meta charset="utf-8"> <title>Angular directive boilerplate demo</title> <link rel="stylesheet" href="demo.css"> </head> <body> <div class="container"> <h1 class="text-muted">Angular directive boilerplate</h1> <my-directive></my-directive> </div> <script src="../node_modules/angular/angular.js"></script> <script src="../node_modules/angular-sanitize/angular-sanitize.js"></script> <script src="../dist/directive.js"></script> <script src="demo.js"></script> </body> </html>