• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSE.mdH A D27-May-20161 KiB2217

README.mdH A D27-May-20161.8 KiB6544

angular-csp.cssH A D27-May-2016343 2216

angular.min.js.mapH A D27-May-2016398.7 KiB98

bower.jsonH A D27-May-2016134 109

package.jsonH A D27-May-2016573 2625

README.md

1# packaged angular
2
3This repo is for distribution on `npm` and `bower`. The source for this module is in the
4[main AngularJS repo](https://github.com/angular/angular.js).
5Please file issues and pull requests against that repo.
6
7## Install
8
9You can install this package either with `npm` or with `bower`.
10
11### npm
12
13```shell
14npm install angular
15```
16
17Then add a `<script>` to your `index.html`:
18
19```html
20<script src="/node_modules/angular/angular.js"></script>
21```
22
23Or `require('angular')` from your code.
24
25### bower
26
27```shell
28bower install angular
29```
30
31Then add a `<script>` to your `index.html`:
32
33```html
34<script src="/bower_components/angular/angular.js"></script>
35```
36
37## Documentation
38
39Documentation is available on the
40[AngularJS docs site](http://docs.angularjs.org/).
41
42## License
43
44The MIT License
45
46Copyright (c) 2010-2015 Google, Inc. http://angularjs.org
47
48Permission is hereby granted, free of charge, to any person obtaining a copy
49of this software and associated documentation files (the "Software"), to deal
50in the Software without restriction, including without limitation the rights
51to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
52copies of the Software, and to permit persons to whom the Software is
53furnished to do so, subject to the following conditions:
54
55The above copyright notice and this permission notice shall be included in
56all copies or substantial portions of the Software.
57
58THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
59IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
60FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
61AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
62LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
63OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
64THE SOFTWARE.
65