@workInProgress @ngdoc overview @name Downloading @description # Including angular scripts from the angular server The quickest way to get started is to point your 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 , 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 includes the following set of files: * __`angular-.js`__ — This file is non-obfuscated, non-minified, and human-readable by opening it it any editor or browser. In order to get better error messages during development, you should always use this non-minified angular script. * __`angular-.min.js`__ — This is a minified and obfuscated version of `angular-.js` created with the Closure compiler. Use this version for production in order to minimize the size of the application that is downloaded by your user's browser. * __`angular-.tgz`__ — This is a tarball archive that contains all of the files released for this angular version. Use this file to get everything in a single download. * __`angular-ie-compat-.js`__ — This is a special file that contains code and data specifically tailored for getting Internet Explorer to work with angular. If you host your own copy of angular files, make sure that this file is available for download, and that it resides under the same parent path as `angular-.js` or `angular-.min.js`. * __`angular-mocks-.js`__ — This file contains an implementation of mocks that makes testing angular apps even easier. Your unit/integration test harness should load this file after `angular-.js` is loaded. * __`angular-scenario-.js`__ — This file is a very nifty JavaScript file that allows you to write and execute end-to-end tests for angular applications. * __`docs-`__ — this directory contains all the files that compose the documentation app. These files are handy to see the older version of our docs, or even more importantly, view the docs offline.