Downloading

Including angular scripts from the angular server

The quickest way to get started is to point your html <script> tag to a http://code.angularjs.org/ URL. This way, you don't have to download anything or maintain a local copy.

There are two types of angular script URLs you can point to, one for development and one for production:

To point your code to an angular script on the angular server, use the following template. This example points to (non-minified) version 0.10.6:

  <!doctype html>
  <html ng-app>
    <head>
      <title>My Angular App</title>
      <script src="http://code.angularjs.org/angular-0.10.6.js"></script>
    </head>
    <body>
    </body>
  </html>

Downloading and hosting angular files locally

This option is for those who want to work with angular offline, or those who want to host the angular files on their own servers.

If you navigate to http://code.angularjs.org/, you'll see a directory listing with all of the angular versions since we started releasing versioned build artifacts (quite late in the project lifetime). Each directory contains all artifacts that we released for a particular version. Download the version you want and have fun.

Each directory under http://code.angularjs.org/ includes the following set of files: