What are the additional js files of the Angular.js framework for?

Viewed 14914

I'm trying out angular.js and I'm confused by the number of javascript files that I should import. In the 1.0.1 release there are a bunch of additional files such as:

  • angular-bootstrap-1.0.1.js
  • angular-loader-1.0.1.js
  • angular-resource-1.0.1.js
  • angular-sanitize-1.0.1.js

Naturally I have opened these files to try to understand what is their function. For instance, angular-loader has a comment that says:

Interface for configuring angular {@link angular.module modules}.

To me, it sounds like an important module, but my simple app works ok without it...

Shall I import all of them?

2 Answers
Related