Skip to content
@Angular-RU

Angular-RU - russian-speaking community

More useful information on the topics of Angular, TypeScript, NativeScript, Dart, etc.

Angular is a development platform, built on TypeScript. As a platform, Angular includes:

  • A component-based framework for building scalable web applications
  • A collection of well-integrated libraries that cover a wide variety of features, including routing, forms management, client-server communication, and more
  • A suite of developer tools to help you develop, build, test, and update your code

With Angular, you're taking advantage of a platform that can scale from single-developer projects to enterprise-level applications.

The following is a minimal Angular component.

import{Component}from'@angular/core';
@Component({selector: 'hello-world',template: ` <h2>Hello World</h2> <p>This is my first component!</p> `})exportclassHelloWorldComponent{// The code in this class drives the component's behavior.}

To use this component, you write the following in a template:

<hello-world></hello-world>

When Angular renders this component, the resulting DOM looks like this:

<hello-world><h2>Hello World</h2><p>This is my first component!</p></hello-world>

Pinned Loading

  1. angular-ru-interview-questionsangular-ru-interview-questionsPublic

    Вопросы на собеседовании по Angular 🅰️ + ответы

    CSS 390 120

  2. angular-awesome-listangular-awesome-listPublic

    Список ресурсов по Angular на русском

    308 58

  3. sdksdkPublic

    🅰️ ngular-RU Software Development Kit

    TypeScript 73 15

  4. universal-starteruniversal-starterPublic template

    Angular 9 Universal repo with many features

    TypeScript 535 191

  5. angular-quick-starterangular-quick-starterPublic

    Учебные материалы на русском

    113 6

  6. awesome-skillsawesome-skillsPublic

    Ссылки на полезные скиллы для AI

    1

Repositories

Showing 10 of 59 repositories

Top languages

Loading…

Most used topics

Loading…