You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.8 KiB

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