Files
tldr/pages.tr/common/ng.md
2022-10-31 06:52:35 -03:00

37 lines
693 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.

# ng
> Angular uygulamaları oluşturup yönetmek için bir Komut Satırı Arayüzü (CLI).
> Daha fazla bilgi için: <https://angular.io/cli>.
- Bir klasörün içinde yeni bir Angular uygulaması oluştur:
`ng new {{proje_ismi}}`
- Bir uygulamaya yeni bir komponent ekle:
`ng generate component {{komponent_ismi}}`
- Bir uygulamaya yeni bir sınıf ekle:
`ng generate class {{sınıf_ismi}}`
- Bir uygulamaya yeni bir direktif ekle:
`ng generate directive {{direktif_ismi}}`
- Uygulamayı çalıştır ve bir sunucu üzerinden yayınla:
`ng serve`
- Uygulamayı derle:
`ng build`
- Testleri çalıştır:
`ng test`
- Angular kurulumunun versiyonunu kontrol et:
`ng version`