-
Make sure you have included underscore.js in your project
<script src="bower_components/underscore/underscore.js">
-
get it
bower install angular-underscore-module
-
Add angular-underscore-module.js to your main file (index.html)
<script src="bower_components/angular-underscore-module/angular-underscore-module.js"></script>
-
Add the module as a dependency in your App definition
var myapp = angular.module('MyApp', ['underscore'])
- To use, add as an injected dependency to your Controller/Service and it is ready to use
angular.module('MyApp').controller('MyCtrl', function ($scope, _) {
// Use underscore
_.each(...);
});