GitHub - a8m/angular-filter: Bunch of useful filters for AngularJS (with no external dependencies!) (original) (raw)
Bunch of useful filters for AngularJS (with no external dependencies!)
Angular 2 version is now available: ng-pipes
Table of contents:
Get Started
(1) You can install angular-filter using 4 different methods:
- clone & build this repository
- via Bower: by running
$ bower install angular-filter
from your terminal - via npm: by running
$ npm install angular-filter
from your terminal - via cdnjs http://www.cdnjs.com/libraries/angular-filter
(2) Include angular-filter.js
(or angular-filter.min.js
) in your index.html
, after including Angular itself.
(3) Add 'angular.filter'
to your main module's list of dependencies.
When you're done, your setup should look similar to the following:
... ...