Files
freeCodeCamp/guide/russian/angularjs/index.md
2018-11-26 20:53:23 +04:00

35 lines
963 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: AngularJS
localeTitle: AngularJS
---
## AngularJS
![alt text](https://angular.io/assets/images/logos/angular/angular.png)
AngularJS (версии 1.x) является JavaScript фреймворком с открытым исходным кодом. AngularJS расширяет HTML для разработки богатых и мощных интерфейсов. Это уменьшает повторяющееся использование HTML-кода. Этого повторения можно избежать, используя директивы, предоставленные AngularJS, которые сохраняют много времени и усилий.
**Установка** :
npm:
```shell
npm install angular
```
HTML:
```html
<script src="/node_modules/angular/angular.js"></script>
```
bower:
```shell
bower install angular
```
HTML:
```html
<script src="/bower_components/angular/angular.js"></script>
```